Token Creditum USD
Overview ERC-20
Price
$0.00 @ 0.000000 FTM
Fully Diluted Market Cap
Total Supply:
354,539.636072 cUSD
Holders:
909 addresses
Contract:
Decimals:
18
Official Site:
Balance
0.009511829587393797 cUSDValue
$0.00
[ Download CSV Export ]
[ Download CSV Export ]
OVERVIEW
Creditum is a lending & borrowing protocol that allows users to mint cUSD, a stablecoin pegged at $1, by supplying collateral.Update? Click here to update the token ICO / general information
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Similar Match Source Code
Note: This contract matches the deployed ByteCode of the Source Code for Contract 0x432d99Efb26C22948B0062c9e70F9A8F5b3811DB
Contract Name:
FToken
Compiler Version
v0.8.10+commit.fc410830
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-12-27 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC3156 FlashBorrower, as defined in * https://eips.ethereum.org/EIPS/eip-3156[ERC-3156]. * * _Available since v4.1._ */ interface IERC3156FlashBorrower { /** * @dev Receive a flash loan. * @param initiator The initiator of the loan. * @param token The loan currency. * @param amount The amount of tokens lent. * @param fee The additional amount of tokens to repay. * @param data Arbitrary data structure, intended to contain user-defined parameters. * @return The keccak256 hash of "ERC3156FlashBorrower.onFlashLoan" */ function onFlashLoan( address initiator, address token, uint256 amount, uint256 fee, bytes calldata data ) external returns (bytes32); } pragma solidity ^0.8.0; /** * @dev Interface of the ERC3156 FlashLender, as defined in * https://eips.ethereum.org/EIPS/eip-3156[ERC-3156]. * * _Available since v4.1._ */ interface IERC3156FlashLender { /** * @dev The amount of currency available to be lended. * @param token The loan currency. * @return The amount of `token` that can be borrowed. */ function maxFlashLoan(address token) external view returns (uint256); /** * @dev The fee to be charged for a given loan. * @param token The loan currency. * @param amount The amount of tokens lent. * @return The amount of `token` to be charged for the loan, on top of the returned principal. */ function flashFee(address token, uint256 amount) external view returns (uint256); /** * @dev Initiate a flash loan. * @param receiver The receiver of the tokens in the loan, and the receiver of the callback. * @param token The loan currency. * @param amount The amount of tokens lent. * @param data Arbitrary data structure, intended to contain user-defined parameters. */ function flashLoan( IERC3156FlashBorrower receiver, address token, uint256 amount, bytes calldata data ) external returns (bool); } pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { function name() external view returns (string memory); function symbol() external view returns (string memory); function decimals() external view returns (uint8); function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); function transfer(address recipient, uint256 amount) external returns (bool); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 amount) external returns (bool); function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); event Transfer(address indexed from, address indexed to, uint256 value); event Approval(address indexed owner, address indexed spender, uint256 value); } pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20 { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } pragma solidity ^0.8.0; /** * @dev Implementation of the ERC3156 Flash loans extension, as defined in * https://eips.ethereum.org/EIPS/eip-3156[ERC-3156]. * * Adds the {flashLoan} method, which provides flash loan support at the token * level. By default there is no fee, but this can be changed by overriding {flashFee}. * * _Available since v4.1._ */ abstract contract ERC20FlashMint is ERC20, IERC3156FlashLender { bytes32 private constant _RETURN_VALUE = keccak256("ERC3156FlashBorrower.onFlashLoan"); /** * @dev Returns the maximum amount of tokens available for loan. * @param token The address of the token that is requested. * @return The amont of token that can be loaned. */ function maxFlashLoan(address token) public view override returns (uint256) { return token == address(this) ? type(uint256).max - ERC20.totalSupply() : 0; } /** * @dev Returns the fee applied when doing flash loans. By default this * implementation has 0 fees. This function can be overloaded to make * the flash loan mechanism deflationary. * @param token The token to be flash loaned. * @param amount The amount of tokens to be loaned. * @return The fees applied to the corresponding flash loan. */ function flashFee(address token, uint256 amount) public view virtual override returns (uint256) { require(token == address(this), "ERC20FlashMint: wrong token"); amount; return 0; } /** * @dev Performs a flash loan. New tokens are minted and sent to the * `receiver`, who is required to implement the {IERC3156FlashBorrower} * interface. By the end of the flash loan, the receiver is expected to own * amount + fee tokens and have them approved back to the token contract itself so * they can be burned. * @param receiver The receiver of the flash loan. Should implement the * {IERC3156FlashBorrower.onFlashLoan} interface. * @param token The token to be flash loaned. Only `address(this)` is * supported. * @param amount The amount of tokens to be loaned. * @param data An arbitrary datafield that is passed to the receiver. * @return `true` is the flash loan was successful. */ function flashLoan( IERC3156FlashBorrower receiver, address token, uint256 amount, bytes calldata data ) public virtual override returns (bool) { uint256 fee = flashFee(token, amount); _mint(address(receiver), amount); require( receiver.onFlashLoan(msg.sender, token, amount, fee, data) == _RETURN_VALUE, "ERC20FlashMint: invalid return value" ); uint256 currentAllowance = allowance(address(receiver), address(this)); require(currentAllowance >= amount + fee, "ERC20FlashMint: allowance does not allow refund"); _approve(address(receiver), address(this), currentAllowance - amount - fee); _burn(address(receiver), amount + fee); return true; } } pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } pragma solidity ^0.8.10; /** * @title Overcollateralized debt token minted by Creditum * @author Creditum */ contract FToken is ERC20FlashMint, Ownable { bool public constant IS_FTOKEN = true; // Allows multiple Creditum contracts to mint/burn mapping(address => bool) public creditum; modifier onlyCreditum() { require(creditum[_msgSender()], "!creditum"); _; } constructor(string memory name, string memory symbol) ERC20(name, symbol) { creditum[_msgSender()] = true; } function mint(address account, uint256 amount) external onlyCreditum returns (bool) { _mint(account, amount); return true; } function burn(address account, uint256 amount) external onlyCreditum returns (bool) { _burn(account, amount); return true; } /// @notice Universal admin allowed to add/remove Creditum contracts function setCreditum(address _creditum, bool _allowed) external onlyOwner { creditum[_creditum] = _allowed; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"IS_FTOKEN","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"creditum","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"flashFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC3156FlashBorrower","name":"receiver","type":"address"},{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"flashLoan","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"maxFlashLoan","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_creditum","type":"address"},{"internalType":"bool","name":"_allowed","type":"bool"}],"name":"setCreditum","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040516200182d3803806200182d83398101604081905262000034916200026b565b8151829082906200004d906003906020850190620000f8565b50805162000063906004906020840190620000f8565b505050620000806200007a620000a260201b60201c565b620000a6565b5050336000908152600660205260409020805460ff1916600117905562000312565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200010690620002d5565b90600052602060002090601f0160209004810192826200012a576000855562000175565b82601f106200014557805160ff191683800117855562000175565b8280016001018555821562000175579182015b828111156200017557825182559160200191906001019062000158565b506200018392915062000187565b5090565b5b8082111562000183576000815560010162000188565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620001c657600080fd5b81516001600160401b0380821115620001e357620001e36200019e565b604051601f8301601f19908116603f011681019082821181831017156200020e576200020e6200019e565b816040528381526020925086838588010111156200022b57600080fd5b600091505b838210156200024f578582018301518183018401529082019062000230565b83821115620002615760008385830101525b9695505050505050565b600080604083850312156200027f57600080fd5b82516001600160401b03808211156200029757600080fd5b620002a586838701620001b4565b93506020850151915080821115620002bc57600080fd5b50620002cb85828601620001b4565b9150509250929050565b600181811c90821680620002ea57607f821691505b602082108114156200030c57634e487b7160e01b600052602260045260246000fd5b50919050565b61150b80620003226000396000f3fe608060405234801561001057600080fd5b50600436106101825760003560e01c8063613255ab116100d85780639dc29fac1161008c578063d9d98ce411610066578063d9d98ce414610315578063dd62ed3e14610328578063f2fde38b1461036157600080fd5b80639dc29fac146102dc578063a457c2d7146102ef578063a9059cbb1461030257600080fd5b8063715018a6116100bd578063715018a6146102b15780638da5cb5b146102b957806395d89b41146102d457600080fd5b8063613255ab1461027557806370a082311461028857600080fd5b806323b872dd1161013a5780633950935111610114578063395093511461023c57806340c10f191461024f5780635cffe9de1461026257600080fd5b806323b872dd14610212578063252e1a0b14610225578063313ce5671461022d57600080fd5b806318160ddd1161016b57806318160ddd146101c85780631d208a87146101da5780631fff1a62146101fd57600080fd5b806306fdde0314610187578063095ea7b3146101a5575b600080fd5b61018f610374565b60405161019c91906111a9565b60405180910390f35b6101b86101b3366004611213565b610406565b604051901515815260200161019c565b6002545b60405190815260200161019c565b6101b86101e836600461123f565b60066020526000908152604090205460ff1681565b61021061020b366004611263565b61041c565b005b6101b86102203660046112a1565b6104c4565b6101b8600181565b6040516012815260200161019c565b6101b861024a366004611213565b610583565b6101b861025d366004611213565b6105bf565b6101b86102703660046112e2565b610628565b6101cc61028336600461123f565b610845565b6101cc61029636600461123f565b6001600160a01b031660009081526020819052604090205490565b610210610891565b6005546040516001600160a01b03909116815260200161019c565b61018f6108f7565b6101b86102ea366004611213565b610906565b6101b86102fd366004611213565b61096f565b6101b8610310366004611213565b610a20565b6101cc610323366004611213565b610a2d565b6101cc610336366004611381565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61021061036f36600461123f565b610a90565b606060038054610383906113af565b80601f01602080910402602001604051908101604052809291908181526020018280546103af906113af565b80156103fc5780601f106103d1576101008083540402835291602001916103fc565b820191906000526020600020905b8154815290600101906020018083116103df57829003601f168201915b5050505050905090565b6000610413338484610b72565b50600192915050565b6005546001600160a01b0316331461047b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6001600160a01b0391909116600090815260066020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60006104d1848484610ccb565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561056b5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e63650000000000000000000000000000000000000000000000006064820152608401610472565b6105788533858403610b72565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916104139185906105ba908690611432565b610b72565b3360009081526006602052604081205460ff1661061e5760405162461bcd60e51b815260206004820152600960248201527f21637265646974756d00000000000000000000000000000000000000000000006044820152606401610472565b6104138383610ee3565b6000806106358686610a2d565b90506106418786610ee3565b6040517f23e30c8b0000000000000000000000000000000000000000000000000000000081527f439148f0bbc682ca079e46d6e2c2f0c1e3b820f1a291b069d8882abf8cf18dd9906001600160a01b038916906323e30c8b906106b29033908b908b9088908c908c9060040161144a565b6020604051808303816000875af11580156106d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106f591906114a5565b146107675760405162461bcd60e51b8152602060048201526024808201527f4552433230466c6173684d696e743a20696e76616c69642072657475726e207660448201527f616c7565000000000000000000000000000000000000000000000000000000006064820152608401610472565b6001600160a01b03871660009081526001602090815260408083203084529091529020546107958287611432565b81101561080a5760405162461bcd60e51b815260206004820152602f60248201527f4552433230466c6173684d696e743a20616c6c6f77616e636520646f6573206e60448201527f6f7420616c6c6f7720726566756e6400000000000000000000000000000000006064820152608401610472565b61082488308461081a8a866114be565b6105ba91906114be565b610837886108328489611432565b610fc2565b506001979650505050505050565b60006001600160a01b038216301461085e57600061088b565b60025461088b907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6114be565b92915050565b6005546001600160a01b031633146108eb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610472565b6108f5600061113f565b565b606060048054610383906113af565b3360009081526006602052604081205460ff166109655760405162461bcd60e51b815260206004820152600960248201527f21637265646974756d00000000000000000000000000000000000000000000006044820152606401610472565b6104138383610fc2565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610a095760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610472565b610a163385858403610b72565b5060019392505050565b6000610413338484610ccb565b60006001600160a01b0383163014610a875760405162461bcd60e51b815260206004820152601b60248201527f4552433230466c6173684d696e743a2077726f6e6720746f6b656e00000000006044820152606401610472565b50600092915050565b6005546001600160a01b03163314610aea5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610472565b6001600160a01b038116610b665760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610472565b610b6f8161113f565b50565b6001600160a01b038316610bed5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610472565b6001600160a01b038216610c695760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610472565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610d475760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610472565b6001600160a01b038216610dc35760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610472565b6001600160a01b03831660009081526020819052604090205481811015610e525760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610472565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610e89908490611432565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ed591815260200190565b60405180910390a350505050565b6001600160a01b038216610f395760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610472565b8060026000828254610f4b9190611432565b90915550506001600160a01b03821660009081526020819052604081208054839290610f78908490611432565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b03821661103e5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610472565b6001600160a01b038216600090815260208190526040902054818110156110cd5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f63650000000000000000000000000000000000000000000000000000000000006064820152608401610472565b6001600160a01b03831660009081526020819052604081208383039055600280548492906110fc9084906114be565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610cbe565b600580546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600060208083528351808285015260005b818110156111d6578581018301518582016040015282016111ba565b818111156111e8576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114610b6f57600080fd5b6000806040838503121561122657600080fd5b8235611231816111fe565b946020939093013593505050565b60006020828403121561125157600080fd5b813561125c816111fe565b9392505050565b6000806040838503121561127657600080fd5b8235611281816111fe565b91506020830135801515811461129657600080fd5b809150509250929050565b6000806000606084860312156112b657600080fd5b83356112c1816111fe565b925060208401356112d1816111fe565b929592945050506040919091013590565b6000806000806000608086880312156112fa57600080fd5b8535611305816111fe565b94506020860135611315816111fe565b935060408601359250606086013567ffffffffffffffff8082111561133957600080fd5b818801915088601f83011261134d57600080fd5b81358181111561135c57600080fd5b89602082850101111561136e57600080fd5b9699959850939650602001949392505050565b6000806040838503121561139457600080fd5b823561139f816111fe565b91506020830135611296816111fe565b600181811c908216806113c357607f821691505b602082108114156113fd577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000821982111561144557611445611403565b500190565b60006001600160a01b03808916835280881660208401525085604083015284606083015260a060808301528260a0830152828460c0840137600060c0848401015260c0601f19601f8501168301019050979650505050505050565b6000602082840312156114b757600080fd5b5051919050565b6000828210156114d0576114d0611403565b50039056fea2646970667358221220690daed22b60d21cbd7e20a77ccb2ad0d4ec8e06951782968bb12bb55040982f64736f6c634300080a0033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000013526576656e616e742046616e746f6d205553440000000000000000000000000000000000000000000000000000000000000000000000000000000000000000057266555344000000000000000000000000000000000000000000000000000000
Deployed ByteCode Sourcemap
21603:952:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5988:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8155:169;;;;;;:::i;:::-;;:::i;:::-;;;1319:14:1;;1312:22;1294:41;;1282:2;1267:18;8155:169:0;1154:187:1;7108:108:0;7196:12;;7108:108;;;1492:25:1;;;1480:2;1465:18;7108:108:0;1346:177:1;21759:40:0;;;;;;:::i;:::-;;;;;;;;;;;;;;;;22429:123;;;;;;:::i;:::-;;:::i;:::-;;8806:492;;;;;;:::i;:::-;;:::i;21653:37::-;;21686:4;21653:37;;6950:93;;;7033:2;2804:36:1;;2792:2;2777:18;6950:93:0;2662:184:1;9707:215:0;;;;;;:::i;:::-;;:::i;22045:147::-;;;;;;:::i;:::-;;:::i;18266:797::-;;;;;;:::i;:::-;;:::i;16695:170::-;;;;;;:::i;:::-;;:::i;7279:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;7380:18:0;7353:7;7380:18;;;;;;;;;;;;7279:127;20667:103;;;:::i;20016:87::-;20089:6;;20016:87;;-1:-1:-1;;;;;20089:6:0;;;3966:74:1;;3954:2;3939:18;20016:87:0;3820:226:1;6207:104:0;;;:::i;22200:147::-;;;;;;:::i;:::-;;:::i;10425:413::-;;;;;;:::i;:::-;;:::i;7619:175::-;;;;;;:::i;:::-;;:::i;17264:213::-;;;;;;:::i;:::-;;:::i;7857:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;7973:18:0;;;7946:7;7973:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;7857:151;20925:201;;;;;;:::i;:::-;;:::i;5988:100::-;6042:13;6075:5;6068:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5988:100;:::o;8155:169::-;8238:4;8255:39;3865:10;8278:7;8287:6;8255:8;:39::i;:::-;-1:-1:-1;8312:4:0;8155:169;;;;:::o;22429:123::-;20089:6;;-1:-1:-1;;;;;20089:6:0;3865:10;20236:23;20228:68;;;;-1:-1:-1;;;20228:68:0;;5088:2:1;20228:68:0;;;5070:21:1;;;5107:18;;;5100:30;5166:34;5146:18;;;5139:62;5218:18;;20228:68:0;;;;;;;;;-1:-1:-1;;;;;22514:19:0;;;::::1;;::::0;;;:8:::1;:19;::::0;;;;:30;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;22429:123::o;8806:492::-;8946:4;8963:36;8973:6;8981:9;8992:6;8963:9;:36::i;:::-;-1:-1:-1;;;;;9039:19:0;;9012:24;9039:19;;;:11;:19;;;;;;;;3865:10;9039:33;;;;;;;;9091:26;;;;9083:79;;;;-1:-1:-1;;;9083:79:0;;5449:2:1;9083:79:0;;;5431:21:1;5488:2;5468:18;;;5461:30;5527:34;5507:18;;;5500:62;5598:10;5578:18;;;5571:38;5626:19;;9083:79:0;5247:404:1;9083:79:0;9198:57;9207:6;3865:10;9248:6;9229:16;:25;9198:8;:57::i;:::-;-1:-1:-1;9286:4:0;;8806:492;-1:-1:-1;;;;8806:492:0:o;9707:215::-;3865:10;9795:4;9844:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;9844:34:0;;;;;;;;;;9795:4;;9812:80;;9835:7;;9844:47;;9881:10;;9844:47;:::i;:::-;9812:8;:80::i;22045:147::-;3865:10;22123:4;21851:22;;;:8;:22;;;;;;;;21843:44;;;;-1:-1:-1;;;21843:44:0;;6180:2:1;21843:44:0;;;6162:21:1;6219:1;6199:18;;;6192:29;6257:11;6237:18;;;6230:39;6286:18;;21843:44:0;5978:332:1;21843:44:0;22140:22:::1;22146:7;22155:6;22140:5;:22::i;18266:797::-:0;18445:4;18462:11;18476:23;18485:5;18492:6;18476:8;:23::i;:::-;18462:37;;18510:32;18524:8;18535:6;18510:5;:32::i;:::-;18575:58;;;;;16433:45;;-1:-1:-1;;;;;18575:20:0;;;;;:58;;18596:10;;18608:5;;18615:6;;18623:3;;18628:4;;;;18575:58;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:75;18553:161;;;;-1:-1:-1;;;18553:161:0;;7527:2:1;18553:161:0;;;7509:21:1;7566:2;7546:18;;;7539:30;7605:34;7585:18;;;7578:62;7676:6;7656:18;;;7649:34;7700:19;;18553:161:0;7325:400:1;18553:161:0;-1:-1:-1;;;;;7973:18:0;;18725:24;7973:18;;;:11;:18;;;;;;;;18789:4;7973:27;;;;;;;;18834:12;18843:3;18834:6;:12;:::i;:::-;18814:16;:32;;18806:92;;;;-1:-1:-1;;;18806:92:0;;7932:2:1;18806:92:0;;;7914:21:1;7971:2;7951:18;;;7944:30;8010:34;7990:18;;;7983:62;8081:17;8061:18;;;8054:45;8116:19;;18806:92:0;7730:411:1;18806:92:0;18909:75;18926:8;18945:4;18980:3;18952:25;18971:6;18952:16;:25;:::i;:::-;:31;;;;:::i;18909:75::-;18995:38;19009:8;19020:12;19029:3;19020:6;:12;:::i;:::-;18995:5;:38::i;:::-;-1:-1:-1;19051:4:0;;18266:797;-1:-1:-1;;;;;;;18266:797:0:o;16695:170::-;16762:7;-1:-1:-1;;;;;16789:22:0;;16806:4;16789:22;:68;;16856:1;16789:68;;;7196:12;;16814:39;;:17;:39;:::i;:::-;16782:75;16695:170;-1:-1:-1;;16695:170:0:o;20667:103::-;20089:6;;-1:-1:-1;;;;;20089:6:0;3865:10;20236:23;20228:68;;;;-1:-1:-1;;;20228:68:0;;5088:2:1;20228:68:0;;;5070:21:1;;;5107:18;;;5100:30;5166:34;5146:18;;;5139:62;5218:18;;20228:68:0;4886:356:1;20228:68:0;20732:30:::1;20759:1;20732:18;:30::i;:::-;20667:103::o:0;6207:104::-;6263:13;6296:7;6289:14;;;;;:::i;22200:147::-;3865:10;22278:4;21851:22;;;:8;:22;;;;;;;;21843:44;;;;-1:-1:-1;;;21843:44:0;;6180:2:1;21843:44:0;;;6162:21:1;6219:1;6199:18;;;6192:29;6257:11;6237:18;;;6230:39;6286:18;;21843:44:0;5978:332:1;21843:44:0;22295:22:::1;22301:7;22310:6;22295:5;:22::i;10425:413::-:0;3865:10;10518:4;10562:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;10562:34:0;;;;;;;;;;10615:35;;;;10607:85;;;;-1:-1:-1;;;10607:85:0;;8478:2:1;10607:85:0;;;8460:21:1;8517:2;8497:18;;;8490:30;8556:34;8536:18;;;8529:62;8627:7;8607:18;;;8600:35;8652:19;;10607:85:0;8276:401:1;10607:85:0;10728:67;3865:10;10751:7;10779:15;10760:16;:34;10728:8;:67::i;:::-;-1:-1:-1;10826:4:0;;10425:413;-1:-1:-1;;;10425:413:0:o;7619:175::-;7705:4;7722:42;3865:10;7746:9;7757:6;7722:9;:42::i;17264:213::-;17351:7;-1:-1:-1;;;;;17379:22:0;;17396:4;17379:22;17371:62;;;;-1:-1:-1;;;17371:62:0;;8884:2:1;17371:62:0;;;8866:21:1;8923:2;8903:18;;;8896:30;8962:29;8942:18;;;8935:57;9009:18;;17371:62:0;8682:351:1;17371:62:0;-1:-1:-1;17468:1:0;17264:213;;;;:::o;20925:201::-;20089:6;;-1:-1:-1;;;;;20089:6:0;3865:10;20236:23;20228:68;;;;-1:-1:-1;;;20228:68:0;;5088:2:1;20228:68:0;;;5070:21:1;;;5107:18;;;5100:30;5166:34;5146:18;;;5139:62;5218:18;;20228:68:0;4886:356:1;20228:68:0;-1:-1:-1;;;;;21014:22:0;::::1;21006:73;;;::::0;-1:-1:-1;;;21006:73:0;;9240:2:1;21006:73:0::1;::::0;::::1;9222:21:1::0;9279:2;9259:18;;;9252:30;9318:34;9298:18;;;9291:62;9389:8;9369:18;;;9362:36;9415:19;;21006:73:0::1;9038:402:1::0;21006:73:0::1;21090:28;21109:8;21090:18;:28::i;:::-;20925:201:::0;:::o;14109:380::-;-1:-1:-1;;;;;14245:19:0;;14237:68;;;;-1:-1:-1;;;14237:68:0;;9647:2:1;14237:68:0;;;9629:21:1;9686:2;9666:18;;;9659:30;9725:34;9705:18;;;9698:62;9796:6;9776:18;;;9769:34;9820:19;;14237:68:0;9445:400:1;14237:68:0;-1:-1:-1;;;;;14324:21:0;;14316:68;;;;-1:-1:-1;;;14316:68:0;;10052:2:1;14316:68:0;;;10034:21:1;10091:2;10071:18;;;10064:30;10130:34;10110:18;;;10103:62;10201:4;10181:18;;;10174:32;10223:19;;14316:68:0;9850:398:1;14316:68:0;-1:-1:-1;;;;;14397:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;14449:32;;1492:25:1;;;14449:32:0;;1465:18:1;14449:32:0;;;;;;;;14109:380;;;:::o;11328:733::-;-1:-1:-1;;;;;11468:20:0;;11460:70;;;;-1:-1:-1;;;11460:70:0;;10455:2:1;11460:70:0;;;10437:21:1;10494:2;10474:18;;;10467:30;10533:34;10513:18;;;10506:62;10604:7;10584:18;;;10577:35;10629:19;;11460:70:0;10253:401:1;11460:70:0;-1:-1:-1;;;;;11549:23:0;;11541:71;;;;-1:-1:-1;;;11541:71:0;;10861:2:1;11541:71:0;;;10843:21:1;10900:2;10880:18;;;10873:30;10939:34;10919:18;;;10912:62;11010:5;10990:18;;;10983:33;11033:19;;11541:71:0;10659:399:1;11541:71:0;-1:-1:-1;;;;;11709:17:0;;11685:21;11709:17;;;;;;;;;;;11745:23;;;;11737:74;;;;-1:-1:-1;;;11737:74:0;;11265:2:1;11737:74:0;;;11247:21:1;11304:2;11284:18;;;11277:30;11343:34;11323:18;;;11316:62;11414:8;11394:18;;;11387:36;11440:19;;11737:74:0;11063:402:1;11737:74:0;-1:-1:-1;;;;;11847:17:0;;;:9;:17;;;;;;;;;;;11867:22;;;11847:42;;11911:20;;;;;;;;:30;;11883:6;;11847:9;11911:30;;11883:6;;11911:30;:::i;:::-;;;;;;;;11976:9;-1:-1:-1;;;;;11959:35:0;11968:6;-1:-1:-1;;;;;11959:35:0;;11987:6;11959:35;;;;1492:25:1;;1480:2;1465:18;;1346:177;11959:35:0;;;;;;;;11449:612;11328:733;;;:::o;12348:399::-;-1:-1:-1;;;;;12432:21:0;;12424:65;;;;-1:-1:-1;;;12424:65:0;;11672:2:1;12424:65:0;;;11654:21:1;11711:2;11691:18;;;11684:30;11750:33;11730:18;;;11723:61;11801:18;;12424:65:0;11470:355:1;12424:65:0;12580:6;12564:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;12597:18:0;;:9;:18;;;;;;;;;;:28;;12619:6;;12597:9;:28;;12619:6;;12597:28;:::i;:::-;;;;-1:-1:-1;;12641:37:0;;1492:25:1;;;-1:-1:-1;;;;;12641:37:0;;;12658:1;;12641:37;;1480:2:1;1465:18;12641:37:0;;;;;;;12348:399;;:::o;13080:591::-;-1:-1:-1;;;;;13164:21:0;;13156:67;;;;-1:-1:-1;;;13156:67:0;;12032:2:1;13156:67:0;;;12014:21:1;12071:2;12051:18;;;12044:30;12110:34;12090:18;;;12083:62;12181:3;12161:18;;;12154:31;12202:19;;13156:67:0;11830:397:1;13156:67:0;-1:-1:-1;;;;;13323:18:0;;13298:22;13323:18;;;;;;;;;;;13360:24;;;;13352:71;;;;-1:-1:-1;;;13352:71:0;;12434:2:1;13352:71:0;;;12416:21:1;12473:2;12453:18;;;12446:30;12512:34;12492:18;;;12485:62;12583:4;12563:18;;;12556:32;12605:19;;13352:71:0;12232:398:1;13352:71:0;-1:-1:-1;;;;;13459:18:0;;:9;:18;;;;;;;;;;13480:23;;;13459:44;;13525:12;:22;;13497:6;;13459:9;13525:22;;13497:6;;13525:22;:::i;:::-;;;;-1:-1:-1;;13565:37:0;;1492:25:1;;;13591:1:0;;-1:-1:-1;;;;;13565:37:0;;;;;1480:2:1;1465:18;13565:37:0;1346:177:1;21286:191:0;21379:6;;;-1:-1:-1;;;;;21396:17:0;;;;;;;;;;;21429:40;;21379:6;;;21396:17;21379:6;;21429:40;;21360:16;;21429:40;21349:128;21286:191;:::o;14:656:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;586:2:1;574:15;-1:-1:-1;;570:88:1;555:104;;;;661:2;551:113;;14:656;-1:-1:-1;;;14:656:1:o;675:154::-;-1:-1:-1;;;;;754:5:1;750:54;743:5;740:65;730:93;;819:1;816;809:12;834:315;902:6;910;963:2;951:9;942:7;938:23;934:32;931:52;;;979:1;976;969:12;931:52;1018:9;1005:23;1037:31;1062:5;1037:31;:::i;:::-;1087:5;1139:2;1124:18;;;;1111:32;;-1:-1:-1;;;834:315:1:o;1528:247::-;1587:6;1640:2;1628:9;1619:7;1615:23;1611:32;1608:52;;;1656:1;1653;1646:12;1608:52;1695:9;1682:23;1714:31;1739:5;1714:31;:::i;:::-;1764:5;1528:247;-1:-1:-1;;;1528:247:1:o;1780:416::-;1845:6;1853;1906:2;1894:9;1885:7;1881:23;1877:32;1874:52;;;1922:1;1919;1912:12;1874:52;1961:9;1948:23;1980:31;2005:5;1980:31;:::i;:::-;2030:5;-1:-1:-1;2087:2:1;2072:18;;2059:32;2129:15;;2122:23;2110:36;;2100:64;;2160:1;2157;2150:12;2100:64;2183:7;2173:17;;;1780:416;;;;;:::o;2201:456::-;2278:6;2286;2294;2347:2;2335:9;2326:7;2322:23;2318:32;2315:52;;;2363:1;2360;2353:12;2315:52;2402:9;2389:23;2421:31;2446:5;2421:31;:::i;:::-;2471:5;-1:-1:-1;2528:2:1;2513:18;;2500:32;2541:33;2500:32;2541:33;:::i;:::-;2201:456;;2593:7;;-1:-1:-1;;;2647:2:1;2632:18;;;;2619:32;;2201:456::o;2851:964::-;2976:6;2984;2992;3000;3008;3061:3;3049:9;3040:7;3036:23;3032:33;3029:53;;;3078:1;3075;3068:12;3029:53;3117:9;3104:23;3136:31;3161:5;3136:31;:::i;:::-;3186:5;-1:-1:-1;3243:2:1;3228:18;;3215:32;3256:33;3215:32;3256:33;:::i;:::-;3308:7;-1:-1:-1;3362:2:1;3347:18;;3334:32;;-1:-1:-1;3417:2:1;3402:18;;3389:32;3440:18;3470:14;;;3467:34;;;3497:1;3494;3487:12;3467:34;3535:6;3524:9;3520:22;3510:32;;3580:7;3573:4;3569:2;3565:13;3561:27;3551:55;;3602:1;3599;3592:12;3551:55;3642:2;3629:16;3668:2;3660:6;3657:14;3654:34;;;3684:1;3681;3674:12;3654:34;3729:7;3724:2;3715:6;3711:2;3707:15;3703:24;3700:37;3697:57;;;3750:1;3747;3740:12;3697:57;2851:964;;;;-1:-1:-1;2851:964:1;;-1:-1:-1;3781:2:1;3773:11;;3803:6;2851:964;-1:-1:-1;;;2851:964:1:o;4051:388::-;4119:6;4127;4180:2;4168:9;4159:7;4155:23;4151:32;4148:52;;;4196:1;4193;4186:12;4148:52;4235:9;4222:23;4254:31;4279:5;4254:31;:::i;:::-;4304:5;-1:-1:-1;4361:2:1;4346:18;;4333:32;4374:33;4333:32;4374:33;:::i;4444:437::-;4523:1;4519:12;;;;4566;;;4587:61;;4641:4;4633:6;4629:17;4619:27;;4587:61;4694:2;4686:6;4683:14;4663:18;4660:38;4657:218;;;4731:77;4728:1;4721:88;4832:4;4829:1;4822:15;4860:4;4857:1;4850:15;4657:218;;4444:437;;;:::o;5656:184::-;5708:77;5705:1;5698:88;5805:4;5802:1;5795:15;5829:4;5826:1;5819:15;5845:128;5885:3;5916:1;5912:6;5909:1;5906:13;5903:39;;;5922:18;;:::i;:::-;-1:-1:-1;5958:9:1;;5845:128::o;6315:816::-;6547:4;-1:-1:-1;;;;;6657:2:1;6649:6;6645:15;6634:9;6627:34;6709:2;6701:6;6697:15;6692:2;6681:9;6677:18;6670:43;;6749:6;6744:2;6733:9;6729:18;6722:34;6792:6;6787:2;6776:9;6772:18;6765:34;6836:3;6830;6819:9;6815:19;6808:32;6877:6;6871:3;6860:9;6856:19;6849:35;6935:6;6927;6921:3;6910:9;6906:19;6893:49;6992:1;6986:3;6977:6;6966:9;6962:22;6958:32;6951:43;7121:3;-1:-1:-1;;7046:2:1;7038:6;7034:15;7030:88;7019:9;7015:104;7011:114;7003:122;;6315:816;;;;;;;;;:::o;7136:184::-;7206:6;7259:2;7247:9;7238:7;7234:23;7230:32;7227:52;;;7275:1;7272;7265:12;7227:52;-1:-1:-1;7298:16:1;;7136:184;-1:-1:-1;7136:184:1:o;8146:125::-;8186:4;8214:1;8211;8208:8;8205:34;;;8219:18;;:::i;:::-;-1:-1:-1;8256:9:1;;8146:125::o
Swarm Source
ipfs://690daed22b60d21cbd7e20a77ccb2ad0d4ec8e06951782968bb12bb55040982f