Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
AlphaKlimaUpgradeable
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-09-21 */ // File: @openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol pragma solidity ^0.8.0; /** * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed * behind a proxy. Since a proxied contract can't have a constructor, it's common to move constructor logic to an * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. * * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. * * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. */ abstract contract Initializable { /** * @dev Indicates that the contract has been initialized. */ bool private _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private _initializing; /** * @dev Modifier to protect an initializer function from being invoked twice. */ modifier initializer() { require(_initializing || !_initialized, "Initializable: contract is already initialized"); bool isTopLevelCall = !_initializing; if (isTopLevelCall) { _initializing = true; _initialized = true; } _; if (isTopLevelCall) { _initializing = false; } } } // File: @openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol 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 ContextUpgradeable is Initializable { function __Context_init() internal initializer { __Context_init_unchained(); } function __Context_init_unchained() internal initializer { } function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } uint256[50] private __gap; } // File: @openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20Upgradeable { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File: @openzeppelin/contracts-upgradeable/token/ERC20/extensions/IERC20MetadataUpgradeable.sol pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20MetadataUpgradeable is IERC20Upgradeable { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File: @openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol 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 guidelines: functions revert instead * of 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 ERC20Upgradeable is Initializable, ContextUpgradeable, IERC20Upgradeable, IERC20MetadataUpgradeable { 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. */ function __ERC20_init(string memory name_, string memory symbol_) internal initializer { __Context_init_unchained(); __ERC20_init_unchained(name_, symbol_); } function __ERC20_init_unchained(string memory name_, string memory symbol_) internal initializer { _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 {} uint256[45] private __gap; } // File: @openzeppelin/contracts-upgradeable/token/ERC20/extensions/ERC20BurnableUpgradeable.sol pragma solidity ^0.8.0; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20BurnableUpgradeable is Initializable, ContextUpgradeable, ERC20Upgradeable { function __ERC20Burnable_init() internal initializer { __Context_init_unchained(); __ERC20Burnable_init_unchained(); } function __ERC20Burnable_init_unchained() internal initializer { } /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { uint256 currentAllowance = allowance(account, _msgSender()); require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance"); unchecked { _approve(account, _msgSender(), currentAllowance - amount); } _burn(account, amount); } uint256[50] private __gap; } // File: @openzeppelin/contracts-upgradeable/token/ERC20/presets/ERC20PresetFixedSupplyUpgradeable.sol pragma solidity ^0.8.0; /** * @dev {ERC20} token, including: * * - Preminted initial supply * - Ability for holders to burn (destroy) their tokens * - No access control mechanism (for minting/pausing) and hence no governance * * This contract uses {ERC20Burnable} to include burn capabilities - head to * its documentation for details. * * _Available since v3.4._ */ contract ERC20PresetFixedSupplyUpgradeable is Initializable, ERC20BurnableUpgradeable { function initialize( string memory name, string memory symbol, uint256 initialSupply, address owner ) public virtual initializer { __ERC20PresetFixedSupply_init(name, symbol, initialSupply, owner); } /** * @dev Mints `initialSupply` amount of token and transfers them to `owner`. * * See {ERC20-constructor}. */ function __ERC20PresetFixedSupply_init( string memory name, string memory symbol, uint256 initialSupply, address owner ) internal initializer { __Context_init_unchained(); __ERC20_init_unchained(name, symbol); __ERC20Burnable_init_unchained(); __ERC20PresetFixedSupply_init_unchained(name, symbol, initialSupply, owner); } function __ERC20PresetFixedSupply_init_unchained( string memory name, string memory symbol, uint256 initialSupply, address owner ) internal initializer { _mint(owner, initialSupply); } uint256[50] private __gap; } // File: @openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol 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 OwnableUpgradeable is Initializable, ContextUpgradeable { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ function __Ownable_init() internal initializer { __Context_init_unchained(); __Ownable_init_unchained(); } function __Ownable_init_unchained() internal initializer { _setOwner(_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 { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } uint256[49] private __gap; } // File: contracts/upgradeable/AlphaKlimaUpgradeable.sol pragma solidity ^0.8.4; contract AlphaKlimaUpgradeable is ERC20PresetFixedSupplyUpgradeable, OwnableUpgradeable { constructor(){ } function initialize() public initializer { __AlphaKlimaUpgradeable_init(0x693aD12DbA5F6E07dE86FaA21098B691F60A1BEa); } function __AlphaKlimaUpgradeable_init(address _Klimadmin) internal { __Ownable_init(); __ERC20PresetFixedSupply_init("AlphaKlima", "aKLIMA", 120000 * 1e18, _Klimadmin); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"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":[{"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":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","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":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"initialSupply","type":"uint256"},{"internalType":"address","name":"owner","type":"address"}],"name":"initialize","outputs":[],"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":[],"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
608060405234801561001057600080fd5b5061141c806100206000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c806379cc6790116100a2578063a457c2d711610071578063a457c2d714610227578063a9059cbb1461023a578063bd3a13f61461024d578063dd62ed3e14610260578063f2fde38b1461029957600080fd5b806379cc6790146101e95780638129fc1c146101fc5780638da5cb5b1461020457806395d89b411461021f57600080fd5b8063313ce567116100e9578063313ce56714610181578063395093511461019057806342966c68146101a357806370a08231146101b8578063715018a6146101e157600080fd5b806306fdde031461011b578063095ea7b31461013957806318160ddd1461015c57806323b872dd1461016e575b600080fd5b6101236102ac565b60405161013091906112af565b60405180910390f35b61014c6101473660046111f3565b61033e565b6040519015158152602001610130565b6035545b604051908152602001610130565b61014c61017c3660046111b8565b610354565b60405160128152602001610130565b61014c61019e3660046111f3565b610403565b6101b66101b1366004611297565b61043f565b005b6101606101c6366004611165565b6001600160a01b031660009081526033602052604090205490565b6101b661044c565b6101b66101f73660046111f3565b6104b2565b6101b6610538565b60c9546040516001600160a01b039091168152602001610130565b6101236105c0565b61014c6102353660046111f3565b6105cf565b61014c6102483660046111f3565b610668565b6101b661025b36600461121c565b610675565b61016061026e366004611186565b6001600160a01b03918216600090815260346020908152604080832093909416825291909152205490565b6101b66102a7366004611165565b6106f1565b6060603680546102bb9061137f565b80601f01602080910402602001604051908101604052809291908181526020018280546102e79061137f565b80156103345780601f1061030957610100808354040283529160200191610334565b820191906000526020600020905b81548152906001019060200180831161031757829003601f168201915b5050505050905090565b600061034b3384846107b9565b50600192915050565b60006103618484846108dd565b6001600160a01b0384166000908152603460209081526040808320338452909152902054828110156103eb5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6103f885338584036107b9565b506001949350505050565b3360008181526034602090815260408083206001600160a01b0387168452909152812054909161034b91859061043a908690611350565b6107b9565b6104493382610aac565b50565b60c9546001600160a01b031633146104a65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103e2565b6104b06000610bfa565b565b60006104be833361026e565b90508181101561051c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b60648201526084016103e2565b61052983338484036107b9565b6105338383610aac565b505050565b600054610100900460ff1680610551575060005460ff16155b61056d5760405162461bcd60e51b81526004016103e290611302565b600054610100900460ff1615801561058f576000805461ffff19166101011790555b6105ac73693ad12dba5f6e07de86faa21098b691f60a1bea610c4c565b8015610449576000805461ff001916905550565b6060603780546102bb9061137f565b3360009081526034602090815260408083206001600160a01b0386168452909152812054828110156106515760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103e2565b61065e33858584036107b9565b5060019392505050565b600061034b3384846108dd565b600054610100900460ff168061068e575060005460ff16155b6106aa5760405162461bcd60e51b81526004016103e290611302565b600054610100900460ff161580156106cc576000805461ffff19166101011790555b6106d885858585610ca6565b80156106ea576000805461ff00191690555b5050505050565b60c9546001600160a01b0316331461074b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103e2565b6001600160a01b0381166107b05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103e2565b61044981610bfa565b6001600160a01b03831661081b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103e2565b6001600160a01b03821661087c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103e2565b6001600160a01b0383811660008181526034602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166109415760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103e2565b6001600160a01b0382166109a35760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103e2565b6001600160a01b03831660009081526033602052604090205481811015610a1b5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103e2565b6001600160a01b03808516600090815260336020526040808220858503905591851681529081208054849290610a52908490611350565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a9e91815260200190565b60405180910390a350505050565b6001600160a01b038216610b0c5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016103e2565b6001600160a01b03821660009081526033602052604090205481811015610b805760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016103e2565b6001600160a01b0383166000908152603360205260408120838303905560358054849290610baf908490611368565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b60c980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610c54610d23565b6104496040518060400160405280600a815260200169416c7068614b6c696d6160b01b81525060405180604001604052806006815260200165614b4c494d4160d01b815250691969368974c05b000000845b600054610100900460ff1680610cbf575060005460ff16155b610cdb5760405162461bcd60e51b81526004016103e290611302565b600054610100900460ff16158015610cfd576000805461ffff19166101011790555b610d05610d8a565b610d0f8585610df4565b610d17610d8a565b6106d885858585610e89565b600054610100900460ff1680610d3c575060005460ff16155b610d585760405162461bcd60e51b81526004016103e290611302565b600054610100900460ff16158015610d7a576000805461ffff19166101011790555b610d82610d8a565b6105ac610eea565b600054610100900460ff1680610da3575060005460ff16155b610dbf5760405162461bcd60e51b81526004016103e290611302565b600054610100900460ff161580156105ac576000805461ffff19166101011790558015610449576000805461ff001916905550565b600054610100900460ff1680610e0d575060005460ff16155b610e295760405162461bcd60e51b81526004016103e290611302565b600054610100900460ff16158015610e4b576000805461ffff19166101011790555b8251610e5e906036906020860190611029565b508151610e72906037906020850190611029565b508015610533576000805461ff0019169055505050565b600054610100900460ff1680610ea2575060005460ff16155b610ebe5760405162461bcd60e51b81526004016103e290611302565b600054610100900460ff16158015610ee0576000805461ffff19166101011790555b6106d88284610f4a565b600054610100900460ff1680610f03575060005460ff16155b610f1f5760405162461bcd60e51b81526004016103e290611302565b600054610100900460ff16158015610f41576000805461ffff19166101011790555b6105ac33610bfa565b6001600160a01b038216610fa05760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016103e2565b8060356000828254610fb29190611350565b90915550506001600160a01b03821660009081526033602052604081208054839290610fdf908490611350565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b8280546110359061137f565b90600052602060002090601f016020900481019282611057576000855561109d565b82601f1061107057805160ff191683800117855561109d565b8280016001018555821561109d579182015b8281111561109d578251825591602001919060010190611082565b506110a99291506110ad565b5090565b5b808211156110a957600081556001016110ae565b80356001600160a01b03811681146110d957600080fd5b919050565b600082601f8301126110ee578081fd5b813567ffffffffffffffff80821115611109576111096113d0565b604051601f8301601f19908116603f01168101908282118183101715611131576111316113d0565b81604052838152866020858801011115611149578485fd5b8360208701602083013792830160200193909352509392505050565b600060208284031215611176578081fd5b61117f826110c2565b9392505050565b60008060408385031215611198578081fd5b6111a1836110c2565b91506111af602084016110c2565b90509250929050565b6000806000606084860312156111cc578081fd5b6111d5846110c2565b92506111e3602085016110c2565b9150604084013590509250925092565b60008060408385031215611205578182fd5b61120e836110c2565b946020939093013593505050565b60008060008060808587031215611231578081fd5b843567ffffffffffffffff80821115611248578283fd5b611254888389016110de565b95506020870135915080821115611269578283fd5b50611276878288016110de565b9350506040850135915061128c606086016110c2565b905092959194509250565b6000602082840312156112a8578081fd5b5035919050565b6000602080835283518082850152825b818110156112db578581018301518582016040015282016112bf565b818111156112ec5783604083870101525b50601f01601f1916929092016040019392505050565b6020808252602e908201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160408201526d191e481a5b9a5d1a585b1a5e995960921b606082015260800190565b60008219821115611363576113636113ba565b500190565b60008282101561137a5761137a6113ba565b500390565b600181811c9082168061139357607f821691505b602082108114156113b457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fdfea264697066735822122067c397c27fab92f5470a48be77f466e725a3f75ecda42e10331c16c17282462a64736f6c63430008040033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101165760003560e01c806379cc6790116100a2578063a457c2d711610071578063a457c2d714610227578063a9059cbb1461023a578063bd3a13f61461024d578063dd62ed3e14610260578063f2fde38b1461029957600080fd5b806379cc6790146101e95780638129fc1c146101fc5780638da5cb5b1461020457806395d89b411461021f57600080fd5b8063313ce567116100e9578063313ce56714610181578063395093511461019057806342966c68146101a357806370a08231146101b8578063715018a6146101e157600080fd5b806306fdde031461011b578063095ea7b31461013957806318160ddd1461015c57806323b872dd1461016e575b600080fd5b6101236102ac565b60405161013091906112af565b60405180910390f35b61014c6101473660046111f3565b61033e565b6040519015158152602001610130565b6035545b604051908152602001610130565b61014c61017c3660046111b8565b610354565b60405160128152602001610130565b61014c61019e3660046111f3565b610403565b6101b66101b1366004611297565b61043f565b005b6101606101c6366004611165565b6001600160a01b031660009081526033602052604090205490565b6101b661044c565b6101b66101f73660046111f3565b6104b2565b6101b6610538565b60c9546040516001600160a01b039091168152602001610130565b6101236105c0565b61014c6102353660046111f3565b6105cf565b61014c6102483660046111f3565b610668565b6101b661025b36600461121c565b610675565b61016061026e366004611186565b6001600160a01b03918216600090815260346020908152604080832093909416825291909152205490565b6101b66102a7366004611165565b6106f1565b6060603680546102bb9061137f565b80601f01602080910402602001604051908101604052809291908181526020018280546102e79061137f565b80156103345780601f1061030957610100808354040283529160200191610334565b820191906000526020600020905b81548152906001019060200180831161031757829003601f168201915b5050505050905090565b600061034b3384846107b9565b50600192915050565b60006103618484846108dd565b6001600160a01b0384166000908152603460209081526040808320338452909152902054828110156103eb5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6103f885338584036107b9565b506001949350505050565b3360008181526034602090815260408083206001600160a01b0387168452909152812054909161034b91859061043a908690611350565b6107b9565b6104493382610aac565b50565b60c9546001600160a01b031633146104a65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103e2565b6104b06000610bfa565b565b60006104be833361026e565b90508181101561051c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b60648201526084016103e2565b61052983338484036107b9565b6105338383610aac565b505050565b600054610100900460ff1680610551575060005460ff16155b61056d5760405162461bcd60e51b81526004016103e290611302565b600054610100900460ff1615801561058f576000805461ffff19166101011790555b6105ac73693ad12dba5f6e07de86faa21098b691f60a1bea610c4c565b8015610449576000805461ff001916905550565b6060603780546102bb9061137f565b3360009081526034602090815260408083206001600160a01b0386168452909152812054828110156106515760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103e2565b61065e33858584036107b9565b5060019392505050565b600061034b3384846108dd565b600054610100900460ff168061068e575060005460ff16155b6106aa5760405162461bcd60e51b81526004016103e290611302565b600054610100900460ff161580156106cc576000805461ffff19166101011790555b6106d885858585610ca6565b80156106ea576000805461ff00191690555b5050505050565b60c9546001600160a01b0316331461074b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103e2565b6001600160a01b0381166107b05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103e2565b61044981610bfa565b6001600160a01b03831661081b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103e2565b6001600160a01b03821661087c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103e2565b6001600160a01b0383811660008181526034602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166109415760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103e2565b6001600160a01b0382166109a35760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103e2565b6001600160a01b03831660009081526033602052604090205481811015610a1b5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103e2565b6001600160a01b03808516600090815260336020526040808220858503905591851681529081208054849290610a52908490611350565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a9e91815260200190565b60405180910390a350505050565b6001600160a01b038216610b0c5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016103e2565b6001600160a01b03821660009081526033602052604090205481811015610b805760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016103e2565b6001600160a01b0383166000908152603360205260408120838303905560358054849290610baf908490611368565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b60c980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610c54610d23565b6104496040518060400160405280600a815260200169416c7068614b6c696d6160b01b81525060405180604001604052806006815260200165614b4c494d4160d01b815250691969368974c05b000000845b600054610100900460ff1680610cbf575060005460ff16155b610cdb5760405162461bcd60e51b81526004016103e290611302565b600054610100900460ff16158015610cfd576000805461ffff19166101011790555b610d05610d8a565b610d0f8585610df4565b610d17610d8a565b6106d885858585610e89565b600054610100900460ff1680610d3c575060005460ff16155b610d585760405162461bcd60e51b81526004016103e290611302565b600054610100900460ff16158015610d7a576000805461ffff19166101011790555b610d82610d8a565b6105ac610eea565b600054610100900460ff1680610da3575060005460ff16155b610dbf5760405162461bcd60e51b81526004016103e290611302565b600054610100900460ff161580156105ac576000805461ffff19166101011790558015610449576000805461ff001916905550565b600054610100900460ff1680610e0d575060005460ff16155b610e295760405162461bcd60e51b81526004016103e290611302565b600054610100900460ff16158015610e4b576000805461ffff19166101011790555b8251610e5e906036906020860190611029565b508151610e72906037906020850190611029565b508015610533576000805461ff0019169055505050565b600054610100900460ff1680610ea2575060005460ff16155b610ebe5760405162461bcd60e51b81526004016103e290611302565b600054610100900460ff16158015610ee0576000805461ffff19166101011790555b6106d88284610f4a565b600054610100900460ff1680610f03575060005460ff16155b610f1f5760405162461bcd60e51b81526004016103e290611302565b600054610100900460ff16158015610f41576000805461ffff19166101011790555b6105ac33610bfa565b6001600160a01b038216610fa05760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016103e2565b8060356000828254610fb29190611350565b90915550506001600160a01b03821660009081526033602052604081208054839290610fdf908490611350565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b8280546110359061137f565b90600052602060002090601f016020900481019282611057576000855561109d565b82601f1061107057805160ff191683800117855561109d565b8280016001018555821561109d579182015b8281111561109d578251825591602001919060010190611082565b506110a99291506110ad565b5090565b5b808211156110a957600081556001016110ae565b80356001600160a01b03811681146110d957600080fd5b919050565b600082601f8301126110ee578081fd5b813567ffffffffffffffff80821115611109576111096113d0565b604051601f8301601f19908116603f01168101908282118183101715611131576111316113d0565b81604052838152866020858801011115611149578485fd5b8360208701602083013792830160200193909352509392505050565b600060208284031215611176578081fd5b61117f826110c2565b9392505050565b60008060408385031215611198578081fd5b6111a1836110c2565b91506111af602084016110c2565b90509250929050565b6000806000606084860312156111cc578081fd5b6111d5846110c2565b92506111e3602085016110c2565b9150604084013590509250925092565b60008060408385031215611205578182fd5b61120e836110c2565b946020939093013593505050565b60008060008060808587031215611231578081fd5b843567ffffffffffffffff80821115611248578283fd5b611254888389016110de565b95506020870135915080821115611269578283fd5b50611276878288016110de565b9350506040850135915061128c606086016110c2565b905092959194509250565b6000602082840312156112a8578081fd5b5035919050565b6000602080835283518082850152825b818110156112db578581018301518582016040015282016112bf565b818111156112ec5783604083870101525b50601f01601f1916929092016040019392505050565b6020808252602e908201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160408201526d191e481a5b9a5d1a585b1a5e995960921b606082015260800190565b60008219821115611363576113636113ba565b500190565b60008282101561137a5761137a6113ba565b500390565b600181811c9082168061139357607f821691505b602082108114156113b457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fdfea264697066735822122067c397c27fab92f5470a48be77f466e725a3f75ecda42e10331c16c17282462a64736f6c63430008040033
Deployed Bytecode Sourcemap
24825:466:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8882:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11049:169;;;;;;:::i;:::-;;:::i;:::-;;;3313:14:1;;3306:22;3288:41;;3276:2;3261:18;11049:169:0;3243:92:1;10002:108:0;10090:12;;10002:108;;;9687:25:1;;;9675:2;9660:18;10002:108:0;9642:76:1;11700:492:0;;;;;;:::i;:::-;;:::i;9844:93::-;;;9927:2;9865:36:1;;9853:2;9838:18;9844:93:0;9820:87:1;12601:215:0;;;;;;:::i;:::-;;:::i;19665:91::-;;;;;;:::i;:::-;;:::i;:::-;;10173:127;;;;;;:::i;:::-;-1:-1:-1;;;;;10274:18:0;10247:7;10274:18;;;:9;:18;;;;;;;10173:127;24069:94;;;:::i;20075:368::-;;;;;;:::i;:::-;;:::i;24951:132::-;;;:::i;23418:87::-;23491:6;;23418:87;;-1:-1:-1;;;;;23491:6:0;;;3086:51:1;;3074:2;3059:18;23418:87:0;3041:102:1;9101:104:0;;;:::i;13319:413::-;;;;;;:::i;:::-;;:::i;10513:175::-;;;;;;:::i;:::-;;:::i;21083:254::-;;;;;;:::i;:::-;;:::i;10751:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;10867:18:0;;;10840:7;10867:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10751:151;24318:192;;;;;;:::i;:::-;;:::i;8882:100::-;8936:13;8969:5;8962:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8882:100;:::o;11049:169::-;11132:4;11149:39;2765:10;11172:7;11181:6;11149:8;:39::i;:::-;-1:-1:-1;11206:4:0;11049:169;;;;:::o;11700:492::-;11840:4;11857:36;11867:6;11875:9;11886:6;11857:9;:36::i;:::-;-1:-1:-1;;;;;11933:19:0;;11906:24;11933:19;;;:11;:19;;;;;;;;2765:10;11933:33;;;;;;;;11985:26;;;;11977:79;;;;-1:-1:-1;;;11977:79:0;;6589:2:1;11977:79:0;;;6571:21:1;6628:2;6608:18;;;6601:30;6667:34;6647:18;;;6640:62;-1:-1:-1;;;6718:18:1;;;6711:38;6766:19;;11977:79:0;;;;;;;;;12092:57;12101:6;2765:10;12142:6;12123:16;:25;12092:8;:57::i;:::-;-1:-1:-1;12180:4:0;;11700:492;-1:-1:-1;;;;11700:492:0:o;12601:215::-;2765:10;12689:4;12738:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12738:34:0;;;;;;;;;;12689:4;;12706:80;;12729:7;;12738:47;;12775:10;;12738:47;:::i;:::-;12706:8;:80::i;19665:91::-;19721:27;2765:10;19741:6;19721:5;:27::i;:::-;19665:91;:::o;24069:94::-;23491:6;;-1:-1:-1;;;;;23491:6:0;2765:10;23638:23;23630:68;;;;-1:-1:-1;;;23630:68:0;;6998:2:1;23630:68:0;;;6980:21:1;;;7017:18;;;7010:30;7076:34;7056:18;;;7049:62;7128:18;;23630:68:0;6970:182:1;23630:68:0;24134:21:::1;24152:1;24134:9;:21::i;:::-;24069:94::o:0;20075:368::-;20152:24;20179:32;20189:7;2765:10;10751:151;:::i;20179:32::-;20152:59;;20250:6;20230:16;:26;;20222:75;;;;-1:-1:-1;;;20222:75:0;;7359:2:1;20222:75:0;;;7341:21:1;7398:2;7378:18;;;7371:30;7437:34;7417:18;;;7410:62;-1:-1:-1;;;7488:18:1;;;7481:34;7532:19;;20222:75:0;7331:226:1;20222:75:0;20333:58;20342:7;2765:10;20384:6;20365:16;:25;20333:8;:58::i;:::-;20413:22;20419:7;20428:6;20413:5;:22::i;:::-;20075:368;;;:::o;24951:132::-;1487:13;;;;;;;;:30;;-1:-1:-1;1505:12:0;;;;1504:13;1487:30;1479:89;;;;-1:-1:-1;;;1479:89:0;;;;;;;:::i;:::-;1581:19;1604:13;;;;;;1603:14;1628:101;;;;1663:13;:20;;-1:-1:-1;;1698:19:0;;;;;1628:101;25003:72:::1;25032:42;25003:28;:72::i;:::-;1759:14:::0;1755:68;;;1806:5;1790:21;;-1:-1:-1;;1790:21:0;;;24951:132;:::o;9101:104::-;9157:13;9190:7;9183:14;;;;;:::i;13319:413::-;2765:10;13412:4;13456:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13456:34:0;;;;;;;;;;13509:35;;;;13501:85;;;;-1:-1:-1;;;13501:85:0;;8977:2:1;13501:85:0;;;8959:21:1;9016:2;8996:18;;;8989:30;9055:34;9035:18;;;9028:62;-1:-1:-1;;;9106:18:1;;;9099:35;9151:19;;13501:85:0;8949:227:1;13501:85:0;13622:67;2765:10;13645:7;13673:15;13654:16;:34;13622:8;:67::i;:::-;-1:-1:-1;13720:4:0;;13319:413;-1:-1:-1;;;13319:413:0:o;10513:175::-;10599:4;10616:42;2765:10;10640:9;10651:6;10616:9;:42::i;21083:254::-;1487:13;;;;;;;;:30;;-1:-1:-1;1505:12:0;;;;1504:13;1487:30;1479:89;;;;-1:-1:-1;;;1479:89:0;;;;;;;:::i;:::-;1581:19;1604:13;;;;;;1603:14;1628:101;;;;1663:13;:20;;-1:-1:-1;;1698:19:0;;;;;1628:101;21264:65:::1;21294:4;21300:6;21308:13;21323:5;21264:29;:65::i;:::-;1759:14:::0;1755:68;;;1806:5;1790:21;;-1:-1:-1;;1790:21:0;;;1755:68;21083:254;;;;;:::o;24318:192::-;23491:6;;-1:-1:-1;;;;;23491:6:0;2765:10;23638:23;23630:68;;;;-1:-1:-1;;;23630:68:0;;6998:2:1;23630:68:0;;;6980:21:1;;;7017:18;;;7010:30;7076:34;7056:18;;;7049:62;7128:18;;23630:68:0;6970:182:1;23630:68:0;-1:-1:-1;;;;;24407:22:0;::::1;24399:73;;;::::0;-1:-1:-1;;;24399:73:0;;4957:2:1;24399:73:0::1;::::0;::::1;4939:21:1::0;4996:2;4976:18;;;4969:30;5035:34;5015:18;;;5008:62;-1:-1:-1;;;5086:18:1;;;5079:36;5132:19;;24399:73:0::1;4929:228:1::0;24399:73:0::1;24483:19;24493:8;24483:9;:19::i;17003:380::-:0;-1:-1:-1;;;;;17139:19:0;;17131:68;;;;-1:-1:-1;;;17131:68:0;;8572:2:1;17131:68:0;;;8554:21:1;8611:2;8591:18;;;8584:30;8650:34;8630:18;;;8623:62;-1:-1:-1;;;8701:18:1;;;8694:34;8745:19;;17131:68:0;8544:226:1;17131:68:0;-1:-1:-1;;;;;17218:21:0;;17210:68;;;;-1:-1:-1;;;17210:68:0;;5364:2:1;17210:68:0;;;5346:21:1;5403:2;5383:18;;;5376:30;5442:34;5422:18;;;5415:62;-1:-1:-1;;;5493:18:1;;;5486:32;5535:19;;17210:68:0;5336:224:1;17210:68:0;-1:-1:-1;;;;;17291:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17343:32;;9687:25:1;;;17343:32:0;;9660:18:1;17343:32:0;;;;;;;17003:380;;;:::o;14222:733::-;-1:-1:-1;;;;;14362:20:0;;14354:70;;;;-1:-1:-1;;;14354:70:0;;8166:2:1;14354:70:0;;;8148:21:1;8205:2;8185:18;;;8178:30;8244:34;8224:18;;;8217:62;-1:-1:-1;;;8295:18:1;;;8288:35;8340:19;;14354:70:0;8138:227:1;14354:70:0;-1:-1:-1;;;;;14443:23:0;;14435:71;;;;-1:-1:-1;;;14435:71:0;;4150:2:1;14435:71:0;;;4132:21:1;4189:2;4169:18;;;4162:30;4228:34;4208:18;;;4201:62;-1:-1:-1;;;4279:18:1;;;4272:33;4322:19;;14435:71:0;4122:225:1;14435:71:0;-1:-1:-1;;;;;14603:17:0;;14579:21;14603:17;;;:9;:17;;;;;;14639:23;;;;14631:74;;;;-1:-1:-1;;;14631:74:0;;5767:2:1;14631:74:0;;;5749:21:1;5806:2;5786:18;;;5779:30;5845:34;5825:18;;;5818:62;-1:-1:-1;;;5896:18:1;;;5889:36;5942:19;;14631:74:0;5739:228:1;14631:74:0;-1:-1:-1;;;;;14741:17:0;;;;;;;:9;:17;;;;;;14761:22;;;14741:42;;14805:20;;;;;;;;:30;;14777:6;;14741:17;14805:30;;14777:6;;14805:30;:::i;:::-;;;;;;;;14870:9;-1:-1:-1;;;;;14853:35:0;14862:6;-1:-1:-1;;;;;14853:35:0;;14881:6;14853:35;;;;9687:25:1;;9675:2;9660:18;;9642:76;14853:35:0;;;;;;;;14222:733;;;;:::o;15974:591::-;-1:-1:-1;;;;;16058:21:0;;16050:67;;;;-1:-1:-1;;;16050:67:0;;7764:2:1;16050:67:0;;;7746:21:1;7803:2;7783:18;;;7776:30;7842:34;7822:18;;;7815:62;-1:-1:-1;;;7893:18:1;;;7886:31;7934:19;;16050:67:0;7736:223:1;16050:67:0;-1:-1:-1;;;;;16217:18:0;;16192:22;16217:18;;;:9;:18;;;;;;16254:24;;;;16246:71;;;;-1:-1:-1;;;16246:71:0;;4554:2:1;16246:71:0;;;4536:21:1;4593:2;4573:18;;;4566:30;4632:34;4612:18;;;4605:62;-1:-1:-1;;;4683:18:1;;;4676:32;4725:19;;16246:71:0;4526:224:1;16246:71:0;-1:-1:-1;;;;;16353:18:0;;;;;;:9;:18;;;;;16374:23;;;16353:44;;16419:12;:22;;16391:6;;16353:18;16419:22;;16391:6;;16419:22;:::i;:::-;;;;-1:-1:-1;;16459:37:0;;9687:25:1;;;16485:1:0;;-1:-1:-1;;;;;16459:37:0;;;;;9675:2:1;9660:18;16459:37:0;;;;;;;20075:368;;;:::o;24518:173::-;24593:6;;;-1:-1:-1;;;;;24610:17:0;;;-1:-1:-1;;;;;;24610:17:0;;;;;;;24643:40;;24593:6;;;24610:17;24593:6;;24643:40;;24574:16;;24643:40;24518:173;;:::o;25091:195::-;25171:16;:14;:16::i;:::-;25198:80;;;;;;;;;;;;;;-1:-1:-1;;;25198:80:0;;;;;;;;;;;;;;;;-1:-1:-1;;;25198:80:0;;;25252:13;25267:10;21484:404;1487:13;;;;;;;;:30;;-1:-1:-1;1505:12:0;;;;1504:13;1487:30;1479:89;;;;-1:-1:-1;;;1479:89:0;;;;;;;:::i;:::-;1581:19;1604:13;;;;;;1603:14;1628:101;;;;1663:13;:20;;-1:-1:-1;;1698:19:0;;;;;1628:101;21678:26:::1;:24;:26::i;:::-;21715:36;21738:4;21744:6;21715:22;:36::i;:::-;21762:32;:30;:32::i;:::-;21805:75;21845:4;21851:6;21859:13;21874:5;21805:39;:75::i;23101:129::-:0;1487:13;;;;;;;;:30;;-1:-1:-1;1505:12:0;;;;1504:13;1487:30;1479:89;;;;-1:-1:-1;;;1479:89:0;;;;;;;:::i;:::-;1581:19;1604:13;;;;;;1603:14;1628:101;;;;1663:13;:20;;-1:-1:-1;;1698:19:0;;;;;1628:101;23159:26:::1;:24;:26::i;:::-;23196;:24;:26::i;2614:65::-:0;1487:13;;;;;;;;:30;;-1:-1:-1;1505:12:0;;;;1504:13;1487:30;1479:89;;;;-1:-1:-1;;;1479:89:0;;;;;;;:::i;:::-;1581:19;1604:13;;;;;;1603:14;1628:101;;;;1663:13;:20;;-1:-1:-1;;1698:19:0;;;;;1755:68;;;;1806:5;1790:21;;-1:-1:-1;;1790:21:0;;;2614:65;:::o;8655:157::-;1487:13;;;;;;;;:30;;-1:-1:-1;1505:12:0;;;;1504:13;1487:30;1479:89;;;;-1:-1:-1;;;1479:89:0;;;;;;;:::i;:::-;1581:19;1604:13;;;;;;1603:14;1628:101;;;;1663:13;:20;;-1:-1:-1;;1698:19:0;;;;;1628:101;8763:13;;::::1;::::0;:5:::1;::::0;:13:::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;8787:17:0;;::::1;::::0;:7:::1;::::0;:17:::1;::::0;::::1;::::0;::::1;:::i;:::-;;1759:14:::0;1755:68;;;1806:5;1790:21;;-1:-1:-1;;1790:21:0;;;8655:157;;;:::o;21896:239::-;1487:13;;;;;;;;:30;;-1:-1:-1;1505:12:0;;;;1504:13;1487:30;1479:89;;;;-1:-1:-1;;;1479:89:0;;;;;;;:::i;:::-;1581:19;1604:13;;;;;;1603:14;1628:101;;;;1663:13;:20;;-1:-1:-1;;1698:19:0;;;;;1628:101;22100:27:::1;22106:5;22113:13;22100:5;:27::i;23238:99::-:0;1487:13;;;;;;;;:30;;-1:-1:-1;1505:12:0;;;;1504:13;1487:30;1479:89;;;;-1:-1:-1;;;1479:89:0;;;;;;;:::i;:::-;1581:19;1604:13;;;;;;1603:14;1628:101;;;;1663:13;:20;;-1:-1:-1;;1698:19:0;;;;;1628:101;23306:23:::1;2765:10:::0;23306:9:::1;:23::i;15242:399::-:0;-1:-1:-1;;;;;15326:21:0;;15318:65;;;;-1:-1:-1;;;15318:65:0;;9383:2:1;15318:65:0;;;9365:21:1;9422:2;9402:18;;;9395:30;9461:33;9441:18;;;9434:61;9512:18;;15318:65:0;9355:181:1;15318:65:0;15474:6;15458:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;15491:18:0;;;;;;:9;:18;;;;;:28;;15513:6;;15491:18;:28;;15513:6;;15491:28;:::i;:::-;;;;-1:-1:-1;;15535:37:0;;9687:25:1;;;-1:-1:-1;;;;;15535:37:0;;;15552:1;;15535:37;;9675:2:1;9660:18;15535:37:0;;;;;;;15242:399;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;111:2;63:124;;;:::o;192:739::-;235:5;288:3;281:4;273:6;269:17;265:27;255:2;;310:5;303;296:20;255:2;350:6;337:20;376:18;413:2;409;406:10;403:2;;;419:18;;:::i;:::-;494:2;488:9;462:2;548:13;;-1:-1:-1;;544:22:1;;;568:2;540:31;536:40;524:53;;;592:18;;;612:22;;;589:46;586:2;;;638:18;;:::i;:::-;678:10;674:2;667:22;713:2;705:6;698:18;759:3;752:4;747:2;739:6;735:15;731:26;728:35;725:2;;;780:5;773;766:20;725:2;848;841:4;833:6;829:17;822:4;814:6;810:17;797:54;871:15;;;888:4;867:26;860:41;;;;-1:-1:-1;875:6:1;245:686;-1:-1:-1;;;245:686:1:o;936:196::-;995:6;1048:2;1036:9;1027:7;1023:23;1019:32;1016:2;;;1069:6;1061;1054:22;1016:2;1097:29;1116:9;1097:29;:::i;:::-;1087:39;1006:126;-1:-1:-1;;;1006:126:1:o;1137:270::-;1205:6;1213;1266:2;1254:9;1245:7;1241:23;1237:32;1234:2;;;1287:6;1279;1272:22;1234:2;1315:29;1334:9;1315:29;:::i;:::-;1305:39;;1363:38;1397:2;1386:9;1382:18;1363:38;:::i;:::-;1353:48;;1224:183;;;;;:::o;1412:338::-;1489:6;1497;1505;1558:2;1546:9;1537:7;1533:23;1529:32;1526:2;;;1579:6;1571;1564:22;1526:2;1607:29;1626:9;1607:29;:::i;:::-;1597:39;;1655:38;1689:2;1678:9;1674:18;1655:38;:::i;:::-;1645:48;;1740:2;1729:9;1725:18;1712:32;1702:42;;1516:234;;;;;:::o;1755:264::-;1823:6;1831;1884:2;1872:9;1863:7;1859:23;1855:32;1852:2;;;1905:6;1897;1890:22;1852:2;1933:29;1952:9;1933:29;:::i;:::-;1923:39;2009:2;1994:18;;;;1981:32;;-1:-1:-1;;;1842:177:1:o;2024:716::-;2130:6;2138;2146;2154;2207:3;2195:9;2186:7;2182:23;2178:33;2175:2;;;2229:6;2221;2214:22;2175:2;2274:9;2261:23;2303:18;2344:2;2336:6;2333:14;2330:2;;;2365:6;2357;2350:22;2330:2;2393:50;2435:7;2426:6;2415:9;2411:22;2393:50;:::i;:::-;2383:60;;2496:2;2485:9;2481:18;2468:32;2452:48;;2525:2;2515:8;2512:16;2509:2;;;2546:6;2538;2531:22;2509:2;;2574:52;2618:7;2607:8;2596:9;2592:24;2574:52;:::i;:::-;2564:62;;;2673:2;2662:9;2658:18;2645:32;2635:42;;2696:38;2730:2;2719:9;2715:18;2696:38;:::i;:::-;2686:48;;2165:575;;;;;;;:::o;2745:190::-;2804:6;2857:2;2845:9;2836:7;2832:23;2828:32;2825:2;;;2878:6;2870;2863:22;2825:2;-1:-1:-1;2906:23:1;;2815:120;-1:-1:-1;2815:120:1:o;3340:603::-;3452:4;3481:2;3510;3499:9;3492:21;3542:6;3536:13;3585:6;3580:2;3569:9;3565:18;3558:34;3610:4;3623:140;3637:6;3634:1;3631:13;3623:140;;;3732:14;;;3728:23;;3722:30;3698:17;;;3717:2;3694:26;3687:66;3652:10;;3623:140;;;3781:6;3778:1;3775:13;3772:2;;;3851:4;3846:2;3837:6;3826:9;3822:22;3818:31;3811:45;3772:2;-1:-1:-1;3927:2:1;3906:15;-1:-1:-1;;3902:29:1;3887:45;;;;3934:2;3883:54;;3461:482;-1:-1:-1;;;3461:482:1:o;5972:410::-;6174:2;6156:21;;;6213:2;6193:18;;;6186:30;6252:34;6247:2;6232:18;;6225:62;-1:-1:-1;;;6318:2:1;6303:18;;6296:44;6372:3;6357:19;;6146:236::o;9912:128::-;9952:3;9983:1;9979:6;9976:1;9973:13;9970:2;;;9989:18;;:::i;:::-;-1:-1:-1;10025:9:1;;9960:80::o;10045:125::-;10085:4;10113:1;10110;10107:8;10104:2;;;10118:18;;:::i;:::-;-1:-1:-1;10155:9:1;;10094:76::o;10175:380::-;10254:1;10250:12;;;;10297;;;10318:2;;10372:4;10364:6;10360:17;10350:27;;10318:2;10425;10417:6;10414:14;10394:18;10391:38;10388:2;;;10471:10;10466:3;10462:20;10459:1;10452:31;10506:4;10503:1;10496:15;10534:4;10531:1;10524:15;10388:2;;10230:325;;;:::o;10560:127::-;10621:10;10616:3;10612:20;10609:1;10602:31;10652:4;10649:1;10642:15;10676:4;10673:1;10666:15;10692:127;10753:10;10748:3;10744:20;10741:1;10734:31;10784:4;10781:1;10774:15;10808:4;10805:1;10798:15
Swarm Source
ipfs://67c397c27fab92f5470a48be77f466e725a3f75ecda42e10331c16c17282462a
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.