ETH Price: $2,883.13 (-9.98%)
Gas: 12 Gwei

Token

CELDA (CELDA)
 

Overview

Max Total Supply

100,415,398 CELDA

Holders

309

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
600 CELDA

Value
$0.00
0x9c347f6919bdd277660002760352529e589fb5c2
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Celda

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-09-03
*/

// File: openzeppelin-solidity/contracts/token/ERC20/IERC20.sol

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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-solidity/contracts/token/ERC20/extensions/IERC20Metadata.sol



pragma solidity ^0.8.0;


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @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-solidity/contracts/utils/Context.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 Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// File: openzeppelin-solidity/contracts/token/ERC20/ERC20.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 ERC20 is Context, IERC20, IERC20Metadata {
    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 defaut 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");
        _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");
        _approve(_msgSender(), spender, currentAllowance - subtractedValue);

        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is 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");
        _balances[sender] = senderBalance - amount;
        _balances[recipient] += amount;

        emit Transfer(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:
     *
     * - `to` 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);
    }

    /**
     * @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");
        _balances[account] = accountBalance - amount;
        _totalSupply -= amount;

        emit Transfer(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 to 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 { }
}

// File: openzeppelin-solidity/contracts/token/ERC20/extensions/ERC20Burnable.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 ERC20Burnable is Context, ERC20 {
    /**
     * @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");
        _approve(account, _msgSender(), currentAllowance - amount);
        _burn(account, amount);
    }
}

// File: openzeppelin-solidity/contracts/security/Pausable.sol



pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor () {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

// File: openzeppelin-solidity/contracts/token/ERC20/extensions/ERC20Pausable.sol



pragma solidity ^0.8.0;



/**
 * @dev ERC20 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 */
abstract contract ERC20Pausable is ERC20, Pausable {
    /**
     * @dev See {ERC20-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override {
        super._beforeTokenTransfer(from, to, amount);

        require(!paused(), "ERC20Pausable: token transfer while paused");
    }
}

// File: openzeppelin-solidity/contracts/utils/Strings.sol



pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

}

// File: openzeppelin-solidity/contracts/utils/introspection/IERC165.sol



pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: openzeppelin-solidity/contracts/utils/introspection/ERC165.sol



pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: openzeppelin-solidity/contracts/access/AccessControl.sol



pragma solidity ^0.8.0;




/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    function hasRole(bytes32 role, address account) external view returns (bool);
    function getRoleAdmin(bytes32 role) external view returns (bytes32);
    function grantRole(bytes32 role, address account) external;
    function revokeRole(bytes32 role, address account) external;
    function renounceRole(bytes32 role, address account) external;
}

/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping (address => bool) members;
        bytes32 adminRole;
    }

    mapping (bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{20}) is missing role (0x[0-9a-f]{32})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role, _msgSender());
        _;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IAccessControl).interfaceId
            || super.supportsInterface(interfaceId);
    }

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{20}) is missing role (0x[0-9a-f]{32})$/
     */
    function _checkRole(bytes32 role, address account) internal view {
        if(!hasRole(role, account)) {
            revert(string(abi.encodePacked(
                "AccessControl: account ",
                Strings.toHexString(uint160(account), 20),
                " is missing role ",
                Strings.toHexString(uint256(role), 32)
            )));
        }
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view override returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        emit RoleAdminChanged(role, getRoleAdmin(role), adminRole);
        _roles[role].adminRole = adminRole;
    }

    function _grantRole(bytes32 role, address account) private {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    function _revokeRole(bytes32 role, address account) private {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

// File: openzeppelin-solidity/contracts/utils/structs/EnumerableSet.sol



pragma solidity ^0.8.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;

        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping (bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) { // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            bytes32 lastvalue = set._values[lastIndex];

            // Move the last value to the index where the value to delete is
            set._values[toDeleteIndex] = lastvalue;
            // Update the index for the moved value
            set._indexes[lastvalue] = valueIndex; // Replace lastvalue's index to valueIndex

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        require(set._values.length > index, "EnumerableSet: index out of bounds");
        return set._values[index];
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint160(uint256(_at(set._inner, index))));
    }


    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }
}

// File: openzeppelin-solidity/contracts/access/AccessControlEnumerable.sol



pragma solidity ^0.8.0;



/**
 * @dev External interface of AccessControlEnumerable declared to support ERC165 detection.
 */
interface IAccessControlEnumerable {
    function getRoleMember(bytes32 role, uint256 index) external view returns (address);
    function getRoleMemberCount(bytes32 role) external view returns (uint256);
}

/**
 * @dev Extension of {AccessControl} that allows enumerating the members of each role.
 */
abstract contract AccessControlEnumerable is IAccessControlEnumerable, AccessControl {
    using EnumerableSet for EnumerableSet.AddressSet;

    mapping (bytes32 => EnumerableSet.AddressSet) private _roleMembers;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IAccessControlEnumerable).interfaceId
            || super.supportsInterface(interfaceId);
    }

    /**
     * @dev Returns one of the accounts that have `role`. `index` must be a
     * value between 0 and {getRoleMemberCount}, non-inclusive.
     *
     * Role bearers are not sorted in any particular way, and their ordering may
     * change at any point.
     *
     * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
     * you perform all queries on the same block. See the following
     * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
     * for more information.
     */
    function getRoleMember(bytes32 role, uint256 index) public view override returns (address) {
        return _roleMembers[role].at(index);
    }

    /**
     * @dev Returns the number of accounts that have `role`. Can be used
     * together with {getRoleMember} to enumerate all bearers of a role.
     */
    function getRoleMemberCount(bytes32 role) public view override returns (uint256) {
        return _roleMembers[role].length();
    }

    /**
     * @dev Overload {grantRole} to track enumerable memberships
     */
    function grantRole(bytes32 role, address account) public virtual override {
        super.grantRole(role, account);
        _roleMembers[role].add(account);
    }

    /**
     * @dev Overload {revokeRole} to track enumerable memberships
     */
    function revokeRole(bytes32 role, address account) public virtual override {
        super.revokeRole(role, account);
        _roleMembers[role].remove(account);
    }

    /**
     * @dev Overload {renounceRole} to track enumerable memberships
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        super.renounceRole(role, account);
        _roleMembers[role].remove(account);
    }

    /**
     * @dev Overload {_setupRole} to track enumerable memberships
     */
    function _setupRole(bytes32 role, address account) internal virtual override {
        super._setupRole(role, account);
        _roleMembers[role].add(account);
    }
}

// File: openzeppelin-solidity/contracts/token/ERC20/presets/ERC20PresetMinterPauser.sol



pragma solidity ^0.8.0;






/**
 * @dev {ERC20} token, including:
 *
 *  - ability for holders to burn (destroy) their tokens
 *  - a minter role that allows for token minting (creation)
 *  - a pauser role that allows to stop all token transfers
 *
 * This contract uses {AccessControl} to lock permissioned functions using the
 * different roles - head to its documentation for details.
 *
 * The account that deploys the contract will be granted the minter and pauser
 * roles, as well as the default admin role, which will let it grant both minter
 * and pauser roles to other accounts.
 */
contract ERC20PresetMinterPauser is Context, AccessControlEnumerable, ERC20Burnable, ERC20Pausable {
    bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
    bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE");

    /**
     * @dev Grants `DEFAULT_ADMIN_ROLE`, `MINTER_ROLE` and `PAUSER_ROLE` to the
     * account that deploys the contract.
     *
     * See {ERC20-constructor}.
     */
    constructor(string memory name, string memory symbol) ERC20(name, symbol) {
        _setupRole(DEFAULT_ADMIN_ROLE, _msgSender());

        _setupRole(MINTER_ROLE, _msgSender());
        _setupRole(PAUSER_ROLE, _msgSender());
    }

    /**
     * @dev Creates `amount` new tokens for `to`.
     *
     * See {ERC20-_mint}.
     *
     * Requirements:
     *
     * - the caller must have the `MINTER_ROLE`.
     */
    function mint(address to, uint256 amount) public virtual {
        require(hasRole(MINTER_ROLE, _msgSender()), "ERC20PresetMinterPauser: must have minter role to mint");
        _mint(to, amount);
    }

    /**
     * @dev Pauses all token transfers.
     *
     * See {ERC20Pausable} and {Pausable-_pause}.
     *
     * Requirements:
     *
     * - the caller must have the `PAUSER_ROLE`.
     */
    function pause() public virtual {
        require(hasRole(PAUSER_ROLE, _msgSender()), "ERC20PresetMinterPauser: must have pauser role to pause");
        _pause();
    }

    /**
     * @dev Unpauses all token transfers.
     *
     * See {ERC20Pausable} and {Pausable-_unpause}.
     *
     * Requirements:
     *
     * - the caller must have the `PAUSER_ROLE`.
     */
    function unpause() public virtual {
        require(hasRole(PAUSER_ROLE, _msgSender()), "ERC20PresetMinterPauser: must have pauser role to unpause");
        _unpause();
    }

    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override(ERC20, ERC20Pausable) {
        super._beforeTokenTransfer(from, to, amount);
    }
}

// File: openzeppelin-solidity/contracts/access/Ownable.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 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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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() virtual {
        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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

// File: openzeppelin-solidity/contracts/utils/cryptography/ECDSA.sol



pragma solidity ^0.8.0;

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        // Divide the signature in r, s and v variables
        bytes32 r;
        bytes32 s;
        uint8 v;

        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            // solhint-disable-next-line no-inline-assembly
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
        } else if (signature.length == 64) {
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            // solhint-disable-next-line no-inline-assembly
            assembly {
                let vs := mload(add(signature, 0x40))
                r := mload(add(signature, 0x20))
                s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
                v := add(shr(255, vs), 27)
            }
        } else {
            revert("ECDSA: invalid signature length");
        }

        return recover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (281): 0 < s < secp256k1n ÷ 2 + 1, and for v in (282): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        require(uint256(s) <= 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0, "ECDSA: invalid signature 's' value");
        require(v == 27 || v == 28, "ECDSA: invalid signature 'v' value");

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        require(signer != address(0), "ECDSA: invalid signature");

        return signer;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

// File: contracts/Celda.sol



pragma solidity ^0.8.0;




/**
______________ ______________ _________ ___________.____    .____       _________ __________________    _______  ___________
\__    ___/   |   \_   _____/ \_   ___ \\_   _____/|    |   |    |     /   _____/ \____    /\_____  \   \      \ \_   _____/
  |    | /    ~    \    __)_  /    \  \/ |    __)_ |    |   |    |     \_____  \    /     /  /   |   \  /   |   \ |    __)_ 
  |    | \    Y    /        \ \     \____|        \|    |___|    |___  /        \  /     /_ /    |    \/    |    \|        \
  |____|  \___|_  /_______  /  \______  /_______  /|_______ \_______ \/_______  / /_______ \\_______  /\____|__  /_______  /
                \/        \/          \/        \/         \/       \/        \/          \/        \/         \/        \/

**/

/**
 * @title CELDA
 * The Cells Zone ERC20 Token
 */
contract Celda is ERC20PresetMinterPauser, Ownable {
    using ECDSA for bytes32;

    bool public buyActive = false;
    bool public claimActive = false;
    uint256 public celdaPrice = 0.0001 ether; 
    uint256 public constant MAX_CELDA = 10000000000 ether;
    uint256 public maxClaimAmount = 1000000; 
    address signerAddress = 0x8E7c6DBdae809c79C9f8Aa0F9ACf05614b4EB548; // The Cells Zone Signer Address
    
    mapping(address => mapping(uint => bool)) public nonces;
    
    event BoughtCelda(address indexed to, uint256 indexed amount);
    event ClaimedCelda(address indexed to, uint256 indexed amount, uint256 indexed data);
    
    constructor(uint256 initialSupply)
        ERC20PresetMinterPauser("CELDA", "CELDA")
    {
        _mint(_msgSender(), initialSupply * (10**18));
    } 
    /**
    * Buy Celda
    */
    function buyCelda(
        uint256 amount 
    ) external payable {
        require(buyActive, "Buying is not active");
        require(celdaPrice * amount <= msg.value, "Ether value sent is not correct");
        require(totalSupply() + amount <= MAX_CELDA, "Purchase would exceed max supply of CELDA");

        _mint(_msgSender(), amount * (10**18));
        
        emit BoughtCelda(_msgSender(), amount);
    }
    /**
    * Claim Celda
    */
    function claimCelda(
        bytes memory signature,
        uint256 amount, 
        uint256 nonce,
        uint256 data
    ) external {
        require(claimActive, "Claim is not active");
        require(amount <= maxClaimAmount, "Claim maximum exceeded");
        require(totalSupply() + amount <= MAX_CELDA, "Claim would exceed max supply of CELDA");
        require(!nonces[_msgSender()][nonce], "Already claimed");

        bytes32 _hash = _getHash(_msgSender(), amount, nonce, data);
        bytes32 messageHash = keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", _hash));
        address signer = messageHash.recover(signature);
        require(signer == signerAddress, "Signers don't match");

        nonces[_msgSender()][nonce] = true;
        _mint(_msgSender(), amount * (10**18));
        
        emit ClaimedCelda(_msgSender(), amount, data);
    }    

    function _getHash(address _address, uint256 _amount, uint256 _nonce, uint256 _data) internal pure returns (bytes32) {
        return keccak256(abi.encode(_address, _amount, _nonce, _data));
    }

    function toggleBuy() public virtual onlyOwner {
        buyActive = !buyActive;
    }

    function toggleClaim() public virtual onlyOwner {
        claimActive = !claimActive;
    }

    function setCeldaPrice(uint256 newPrice) public virtual onlyOwner {
        celdaPrice = newPrice;
    }

    function setSignerAddress(address _address) public virtual onlyOwner {
        signerAddress = _address;
    }

    function setMaxClaimAmount(uint amount) public virtual onlyOwner {
        maxClaimAmount = amount;
    }

    function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        address payable sender = payable(msg.sender);
        sender.transfer(balance);
    }

	function reclaimToken(IERC20 token) public onlyOwner {
		require(address(token) != address(0));
		uint256 balance = token.balanceOf(address(this));
		token.transfer(msg.sender, balance);
	}    

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"initialSupply","type":"uint256"}],"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":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"BoughtCelda","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"data","type":"uint256"}],"name":"ClaimedCelda","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_CELDA","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":"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":"buyActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"buyCelda","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"celdaPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"signature","type":"bytes"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"data","type":"uint256"}],"name":"claimCelda","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":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"maxClaimAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"nonces","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"reclaimToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setCeldaPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxClaimAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setSignerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleBuy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleClaim","outputs":[],"stateMutability":"nonpayable","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"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526007805461ffff60a81b19169055655af3107a4000600855620f4240600955600a80546001600160a01b031916738e7c6dbdae809c79c9f8aa0f9acf05614b4eb5481790553480156200005657600080fd5b50604051620030b9380380620030b9833981016040819052620000799162000563565b6040518060400160405280600581526020016443454c444160d81b8152506040518060400160405280600581526020016443454c444160d81b81525081818160059080519060200190620000cf929190620004bd565b508051620000e5906006906020840190620004bd565b50506007805460ff1916905550620000ff600033620001c9565b6200012b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633620001c9565b620001577f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33620001c9565b505060078054610100600160a81b0319163361010081029190911790915560405181906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350620001c233620001bc83670de0b6b3a764000062000598565b6200020c565b506200060d565b620001e082826200030360201b620016e31760201c565b600082815260016020908152604090912062000207918390620016ed62000313821b17901c565b505050565b6001600160a01b038216620002685760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b620002766000838362000333565b80600460008282546200028a91906200057d565b90915550506001600160a01b03821660009081526002602052604081208054839290620002b99084906200057d565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6200030f82826200034b565b5050565b60006200032a836001600160a01b038416620003eb565b90505b92915050565b620002078383836200043d60201b620017021760201c565b6000828152602081815260408083206001600160a01b038516845290915290205460ff166200030f576000828152602081815260408083206001600160a01b03851684529091529020805460ff19166001179055620003a73390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b600081815260018301602052604081205462000434575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556200032d565b5060006200032d565b620004558383836200020760201b62000aeb1760201c565b60075460ff1615620002075760405162461bcd60e51b815260206004820152602a60248201527f45524332305061757361626c653a20746f6b656e207472616e736665722077686044820152691a5b19481c185d5cd95960b21b60648201526084016200025f565b828054620004cb90620005ba565b90600052602060002090601f016020900481019282620004ef57600085556200053a565b82601f106200050a57805160ff19168380011785556200053a565b828001600101855582156200053a579182015b828111156200053a5782518255916020019190600101906200051d565b50620005489291506200054c565b5090565b5b808211156200054857600081556001016200054d565b6000602082840312156200057657600080fd5b5051919050565b60008219821115620005935762000593620005f7565b500190565b6000816000190483118215151615620005b557620005b5620005f7565b500290565b600181811c90821680620005cf57607f821691505b60208210811415620005f157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b612a9c806200061d6000396000f3fe60806040526004361061027d5760003560e01c80638456cb591161014f578063c49e2e4c116100c1578063d62126ae1161007a578063d62126ae14610798578063dd62ed3e146107ad578063e63ab1e9146107f3578063eb62bdde14610827578063f2fde38b1461083d578063fbbe15961461085d57600080fd5b8063c49e2e4c146106ce578063ca15c873146106ee578063d11297451461070e578063d4a6a2fd14610723578063d539139314610744578063d547741f1461077857600080fd5b8063a11a1add11610113578063a11a1add14610622578063a217fddf14610643578063a457c2d714610658578063a9059cbb14610678578063aeef643914610698578063bebe8a65146106ae57600080fd5b80638456cb59146105815780638da5cb5b146105965780639010d07c146105cd57806391d14854146105ed57806395d89b411461060d57600080fd5b806339509351116101f3578063502e1a16116101ac578063502e1a16146104a35780635c975abb146104de57806370a08231146104f6578063715018a61461052c57806379cc6790146105415780637b352f8e1461056157600080fd5b806339509351146104065780633ccfd60b146104265780633f4ba83a1461043b57806340c10f191461045057806342966c681461047057806345a917001461049057600080fd5b806318160ddd1161024557806318160ddd1461033b57806323b872dd1461035a578063248a9ca31461037a5780632f2ff15d146103aa578063313ce567146103ca57806336568abe146103e657600080fd5b806301ffc9a714610282578063046dc166146102b757806306fdde03146102d9578063095ea7b3146102fb57806317ffc3201461031b575b600080fd5b34801561028e57600080fd5b506102a261029d366004612744565b61087d565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506102d76102d23660046125ff565b6108a8565b005b3480156102e557600080fd5b506102ee610903565b6040516102ae91906128c1565b34801561030757600080fd5b506102a2610316366004612696565b610995565b34801561032757600080fd5b506102d76103363660046125ff565b6109ab565b34801561034757600080fd5b506004545b6040519081526020016102ae565b34801561036657600080fd5b506102a2610375366004612655565b610af0565b34801561038657600080fd5b5061034c6103953660046126e4565b60009081526020819052604090206001015490565b3480156103b657600080fd5b506102d76103c53660046126fd565b610ba1565b3480156103d657600080fd5b50604051601281526020016102ae565b3480156103f257600080fd5b506102d76104013660046126fd565b610bc3565b34801561041257600080fd5b506102a2610421366004612696565b610be5565b34801561043257600080fd5b506102d7610c1c565b34801561044757600080fd5b506102d7610c7d565b34801561045c57600080fd5b506102d761046b366004612696565b610d23565b34801561047c57600080fd5b506102d761048b3660046126e4565b610dc6565b6102d761049e3660046126e4565b610dd3565b3480156104af57600080fd5b506102a26104be366004612696565b600b60209081526000928352604080842090915290825290205460ff1681565b3480156104ea57600080fd5b5060075460ff166102a2565b34801561050257600080fd5b5061034c6105113660046125ff565b6001600160a01b031660009081526002602052604090205490565b34801561053857600080fd5b506102d7610f4c565b34801561054d57600080fd5b506102d761055c366004612696565b610fcc565b34801561056d57600080fd5b506102d761057c3660046126e4565b61104f565b34801561058d57600080fd5b506102d7611084565b3480156105a257600080fd5b5060075461010090046001600160a01b03165b6040516001600160a01b0390911681526020016102ae565b3480156105d957600080fd5b506105b56105e8366004612722565b611128565b3480156105f957600080fd5b506102a26106083660046126fd565b611147565b34801561061957600080fd5b506102ee611170565b34801561062e57600080fd5b506007546102a290600160a81b900460ff1681565b34801561064f57600080fd5b5061034c600081565b34801561066457600080fd5b506102a2610673366004612696565b61117f565b34801561068457600080fd5b506102a2610693366004612696565b61121a565b3480156106a457600080fd5b5061034c60095481565b3480156106ba57600080fd5b506102d76106c93660046126e4565b611227565b3480156106da57600080fd5b506102d76106e936600461276e565b61125c565b3480156106fa57600080fd5b5061034c6107093660046126e4565b611524565b34801561071a57600080fd5b506102d761153b565b34801561072f57600080fd5b506007546102a290600160b01b900460ff1681565b34801561075057600080fd5b5061034c7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b34801561078457600080fd5b506102d76107933660046126fd565b61158c565b3480156107a457600080fd5b506102d7611596565b3480156107b957600080fd5b5061034c6107c836600461261c565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b3480156107ff57600080fd5b5061034c7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b34801561083357600080fd5b5061034c60085481565b34801561084957600080fd5b506102d76108583660046125ff565b6115e7565b34801561086957600080fd5b5061034c6b204fce5e3e2502611000000081565b60006001600160e01b03198216635a05180f60e01b14806108a257506108a282611768565b92915050565b6007546001600160a01b036101009091041633146108e15760405162461bcd60e51b81526004016108d8906128f4565b60405180910390fd5b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b606060058054610912906129be565b80601f016020809104026020016040519081016040528092919081815260200182805461093e906129be565b801561098b5780601f106109605761010080835404028352916020019161098b565b820191906000526020600020905b81548152906001019060200180831161096e57829003601f168201915b5050505050905090565b60006109a233848461179d565b50600192915050565b6007546001600160a01b036101009091041633146109db5760405162461bcd60e51b81526004016108d8906128f4565b6001600160a01b0381166109ee57600080fd5b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a082319060240160206040518083038186803b158015610a3057600080fd5b505afa158015610a44573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a689190612833565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0383169063a9059cbb90604401602060405180830381600087803b158015610ab357600080fd5b505af1158015610ac7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aeb91906126c2565b505050565b6000610afd8484846118c2565b6001600160a01b038416600090815260036020908152604080832033845290915290205482811015610b825760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016108d8565b610b968533610b918685612960565b61179d565b506001949350505050565b610bab8282611aa5565b6000828152600160205260409020610aeb90826116ed565b610bcd8282611acb565b6000828152600160205260409020610aeb9082611b45565b3360008181526003602090815260408083206001600160a01b038716845290915281205490916109a2918590610b91908690612929565b6007546001600160a01b03610100909104163314610c4c5760405162461bcd60e51b81526004016108d8906128f4565b60405147903390819083156108fc029084906000818181858888f19350505050158015610aeb573d6000803e3d6000fd5b610ca77f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33611147565b610d195760405162461bcd60e51b815260206004820152603960248201527f45524332305072657365744d696e7465725061757365723a206d75737420686160448201527f76652070617573657220726f6c6520746f20756e70617573650000000000000060648201526084016108d8565b610d21611b5a565b565b610d4d7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633611147565b610db85760405162461bcd60e51b815260206004820152603660248201527f45524332305072657365744d696e7465725061757365723a206d7573742068616044820152751d99481b5a5b9d195c881c9bdb19481d1bc81b5a5b9d60521b60648201526084016108d8565b610dc28282611bed565b5050565b610dd03382611cd8565b50565b600754600160a81b900460ff16610e235760405162461bcd60e51b8152602060048201526014602482015273427579696e67206973206e6f742061637469766560601b60448201526064016108d8565b3481600854610e329190612941565b1115610e805760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f72726563740060448201526064016108d8565b6b204fce5e3e2502611000000081610e9760045490565b610ea19190612929565b1115610f015760405162461bcd60e51b815260206004820152602960248201527f507572636861736520776f756c6420657863656564206d617820737570706c79604482015268206f662043454c444160b81b60648201526084016108d8565b610f1c33610f1783670de0b6b3a7640000612941565b611bed565b604051819033907fc48f1eb66c92fe194c52d6f8651b59ef1a45d920ddcf2a7cd9191a21f94d76fa90600090a350565b6007546001600160a01b03610100909104163314610f7c5760405162461bcd60e51b81526004016108d8906128f4565b60075460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360078054610100600160a81b0319169055565b6000610fd883336107c8565b9050818110156110365760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b60648201526084016108d8565b6110458333610b918585612960565b610aeb8383611cd8565b6007546001600160a01b0361010090910416331461107f5760405162461bcd60e51b81526004016108d8906128f4565b600955565b6110ae7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33611147565b6111205760405162461bcd60e51b815260206004820152603760248201527f45524332305072657365744d696e7465725061757365723a206d75737420686160448201527f76652070617573657220726f6c6520746f20706175736500000000000000000060648201526084016108d8565b610d21611e33565b60008281526001602052604081206111409083611eae565b9392505050565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b606060068054610912906129be565b3360009081526003602090815260408083206001600160a01b0386168452909152812054828110156112015760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016108d8565b6112103385610b918685612960565b5060019392505050565b60006109a23384846118c2565b6007546001600160a01b036101009091041633146112575760405162461bcd60e51b81526004016108d8906128f4565b600855565b600754600160b01b900460ff166112ab5760405162461bcd60e51b8152602060048201526013602482015272436c61696d206973206e6f742061637469766560681b60448201526064016108d8565b6009548311156112f65760405162461bcd60e51b815260206004820152601660248201527510db185a5b481b585e1a5b5d5b48195e18d95959195960521b60448201526064016108d8565b6b204fce5e3e250261100000008361130d60045490565b6113179190612929565b11156113745760405162461bcd60e51b815260206004820152602660248201527f436c61696d20776f756c6420657863656564206d617820737570706c79206f666044820152652043454c444160d01b60648201526084016108d8565b336000908152600b6020908152604080832085845290915290205460ff16156113d15760405162461bcd60e51b815260206004820152600f60248201526e105b1c9958591e4818db185a5b5959608a1b60448201526064016108d8565b60408051336020808301919091528183018690526060820185905260808083018590528351808403909101815260a0830184528051908201207f19457468657265756d205369676e6564204d6573736167653a0a33320000000060c084015260dc8084018290528451808503909101815260fc9093019093528151910120600061145b8288611eba565b600a549091506001600160a01b038083169116146114b15760405162461bcd60e51b81526020600482015260136024820152720a6d2cedccae4e640c8dedc4ee840dac2e8c6d606b1b60448201526064016108d8565b336000818152600b602090815260408083208984529091529020805460ff191660011790556114ec90610f1788670de0b6b3a7640000612941565b6040518490879033907fa14f30f3957776d581f269d5ec253ce2d6966ae35a8e9d08a73c3a99505a003c90600090a450505050505050565b60008181526001602052604081206108a290611f70565b6007546001600160a01b0361010090910416331461156b5760405162461bcd60e51b81526004016108d8906128f4565b6007805460ff60b01b198116600160b01b9182900460ff1615909102179055565b610bcd8282611f7a565b6007546001600160a01b036101009091041633146115c65760405162461bcd60e51b81526004016108d8906128f4565b6007805460ff60a81b198116600160a81b9182900460ff1615909102179055565b6007546001600160a01b036101009091041633146116175760405162461bcd60e51b81526004016108d8906128f4565b6001600160a01b03811661167c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108d8565b6007546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600780546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b610dc28282611fa0565b6000611140836001600160a01b038416612024565b60075460ff1615610aeb5760405162461bcd60e51b815260206004820152602a60248201527f45524332305061757361626c653a20746f6b656e207472616e736665722077686044820152691a5b19481c185d5cd95960b21b60648201526084016108d8565b60006001600160e01b03198216637965db0b60e01b14806108a257506301ffc9a760e01b6001600160e01b03198316146108a2565b6001600160a01b0383166117ff5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016108d8565b6001600160a01b0382166118605760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016108d8565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166119265760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016108d8565b6001600160a01b0382166119885760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016108d8565b611993838383612073565b6001600160a01b03831660009081526002602052604090205481811015611a0b5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016108d8565b611a158282612960565b6001600160a01b038086166000908152600260205260408082209390935590851681529081208054849290611a4b908490612929565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611a9791815260200190565b60405180910390a350505050565b600082815260208190526040902060010154611ac1813361207e565b610aeb8383611fa0565b6001600160a01b0381163314611b3b5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084016108d8565b610dc282826120e2565b6000611140836001600160a01b038416612147565b60075460ff16611ba35760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016108d8565b6007805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b038216611c435760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016108d8565b611c4f60008383612073565b8060046000828254611c619190612929565b90915550506001600160a01b03821660009081526002602052604081208054839290611c8e908490612929565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b038216611d385760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016108d8565b611d4482600083612073565b6001600160a01b03821660009081526002602052604090205481811015611db85760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016108d8565b611dc28282612960565b6001600160a01b03841660009081526002602052604081209190915560048054849290611df0908490612960565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020016118b5565b60075460ff1615611e795760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016108d8565b6007805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611bd03390565b60006111408383612234565b600080600080845160411415611ee45750505060208201516040830151606084015160001a611f5a565b845160401415611f125750505060408201516020830151906001600160ff1b0381169060ff1c601b01611f5a565b60405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016108d8565b611f66868285856122ba565b9695505050505050565b60006108a2825490565b600082815260208190526040902060010154611f96813361207e565b610aeb83836120e2565b611faa8282611147565b610dc2576000828152602081815260408083206001600160a01b03851684529091529020805460ff19166001179055611fe03390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b600081815260018301602052604081205461206b575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556108a2565b5060006108a2565b610aeb838383611702565b6120888282611147565b610dc2576120a0816001600160a01b03166014612463565b6120ab836020612463565b6040516020016120bc92919061284c565b60408051601f198184030181529082905262461bcd60e51b82526108d8916004016128c1565b6120ec8282611147565b15610dc2576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6000818152600183016020526040812054801561222a57600061216b600183612960565b855490915060009061217f90600190612960565b9050600086600001828154811061219857612198612a25565b90600052602060002001549050808760000184815481106121bb576121bb612a25565b6000918252602080832090910192909255828152600189019091526040902084905586548790806121ee576121ee612a0f565b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506108a2565b60009150506108a2565b815460009082106122925760405162461bcd60e51b815260206004820152602260248201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016108d8565b8260000182815481106122a7576122a7612a25565b9060005260206000200154905092915050565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08211156123375760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b60648201526084016108d8565b8360ff16601b148061234c57508360ff16601c145b6123a35760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b60648201526084016108d8565b6040805160008082526020820180845288905260ff871692820192909252606081018590526080810184905260019060a0016020604051602081039080840390855afa1580156123f7573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661245a5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016108d8565b95945050505050565b60606000612472836002612941565b61247d906002612929565b67ffffffffffffffff81111561249557612495612a3b565b6040519080825280601f01601f1916602001820160405280156124bf576020820181803683370190505b509050600360fc1b816000815181106124da576124da612a25565b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061250957612509612a25565b60200101906001600160f81b031916908160001a905350600061252d846002612941565b612538906001612929565b90505b60018111156125b0576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811061256c5761256c612a25565b1a60f81b82828151811061258257612582612a25565b60200101906001600160f81b031916908160001a90535060049490941c936125a9816129a7565b905061253b565b5083156111405760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016108d8565b60006020828403121561261157600080fd5b813561114081612a51565b6000806040838503121561262f57600080fd5b823561263a81612a51565b9150602083013561264a81612a51565b809150509250929050565b60008060006060848603121561266a57600080fd5b833561267581612a51565b9250602084013561268581612a51565b929592945050506040919091013590565b600080604083850312156126a957600080fd5b82356126b481612a51565b946020939093013593505050565b6000602082840312156126d457600080fd5b8151801515811461114057600080fd5b6000602082840312156126f657600080fd5b5035919050565b6000806040838503121561271057600080fd5b82359150602083013561264a81612a51565b6000806040838503121561273557600080fd5b50508035926020909101359150565b60006020828403121561275657600080fd5b81356001600160e01b03198116811461114057600080fd5b6000806000806080858703121561278457600080fd5b843567ffffffffffffffff8082111561279c57600080fd5b818701915087601f8301126127b057600080fd5b8135818111156127c2576127c2612a3b565b604051601f8201601f19908116603f011681019083821181831017156127ea576127ea612a3b565b816040528281528a602084870101111561280357600080fd5b82602086016020830137600060209382018401529a91890135995050604088013597606001359650945050505050565b60006020828403121561284557600080fd5b5051919050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351612884816017850160208801612977565b7001034b99036b4b9b9b4b733903937b6329607d1b60179184019182015283516128b5816028840160208801612977565b01602801949350505050565b60208152600082518060208401526128e0816040850160208701612977565b601f01601f19169190910160400192915050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000821982111561293c5761293c6129f9565b500190565b600081600019048311821515161561295b5761295b6129f9565b500290565b600082821015612972576129726129f9565b500390565b60005b8381101561299257818101518382015260200161297a565b838111156129a1576000848401525b50505050565b6000816129b6576129b66129f9565b506000190190565b600181811c908216806129d257607f821691505b602082108114156129f357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610dd057600080fdfea264697066735822122053cb0e5c91f7638a90f01908bccf9f79d297924bd49779c3a34afad80c4ebc0b64736f6c634300080700330000000000000000000000000000000000000000000000000000000005f5e100

Deployed Bytecode

0x60806040526004361061027d5760003560e01c80638456cb591161014f578063c49e2e4c116100c1578063d62126ae1161007a578063d62126ae14610798578063dd62ed3e146107ad578063e63ab1e9146107f3578063eb62bdde14610827578063f2fde38b1461083d578063fbbe15961461085d57600080fd5b8063c49e2e4c146106ce578063ca15c873146106ee578063d11297451461070e578063d4a6a2fd14610723578063d539139314610744578063d547741f1461077857600080fd5b8063a11a1add11610113578063a11a1add14610622578063a217fddf14610643578063a457c2d714610658578063a9059cbb14610678578063aeef643914610698578063bebe8a65146106ae57600080fd5b80638456cb59146105815780638da5cb5b146105965780639010d07c146105cd57806391d14854146105ed57806395d89b411461060d57600080fd5b806339509351116101f3578063502e1a16116101ac578063502e1a16146104a35780635c975abb146104de57806370a08231146104f6578063715018a61461052c57806379cc6790146105415780637b352f8e1461056157600080fd5b806339509351146104065780633ccfd60b146104265780633f4ba83a1461043b57806340c10f191461045057806342966c681461047057806345a917001461049057600080fd5b806318160ddd1161024557806318160ddd1461033b57806323b872dd1461035a578063248a9ca31461037a5780632f2ff15d146103aa578063313ce567146103ca57806336568abe146103e657600080fd5b806301ffc9a714610282578063046dc166146102b757806306fdde03146102d9578063095ea7b3146102fb57806317ffc3201461031b575b600080fd5b34801561028e57600080fd5b506102a261029d366004612744565b61087d565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506102d76102d23660046125ff565b6108a8565b005b3480156102e557600080fd5b506102ee610903565b6040516102ae91906128c1565b34801561030757600080fd5b506102a2610316366004612696565b610995565b34801561032757600080fd5b506102d76103363660046125ff565b6109ab565b34801561034757600080fd5b506004545b6040519081526020016102ae565b34801561036657600080fd5b506102a2610375366004612655565b610af0565b34801561038657600080fd5b5061034c6103953660046126e4565b60009081526020819052604090206001015490565b3480156103b657600080fd5b506102d76103c53660046126fd565b610ba1565b3480156103d657600080fd5b50604051601281526020016102ae565b3480156103f257600080fd5b506102d76104013660046126fd565b610bc3565b34801561041257600080fd5b506102a2610421366004612696565b610be5565b34801561043257600080fd5b506102d7610c1c565b34801561044757600080fd5b506102d7610c7d565b34801561045c57600080fd5b506102d761046b366004612696565b610d23565b34801561047c57600080fd5b506102d761048b3660046126e4565b610dc6565b6102d761049e3660046126e4565b610dd3565b3480156104af57600080fd5b506102a26104be366004612696565b600b60209081526000928352604080842090915290825290205460ff1681565b3480156104ea57600080fd5b5060075460ff166102a2565b34801561050257600080fd5b5061034c6105113660046125ff565b6001600160a01b031660009081526002602052604090205490565b34801561053857600080fd5b506102d7610f4c565b34801561054d57600080fd5b506102d761055c366004612696565b610fcc565b34801561056d57600080fd5b506102d761057c3660046126e4565b61104f565b34801561058d57600080fd5b506102d7611084565b3480156105a257600080fd5b5060075461010090046001600160a01b03165b6040516001600160a01b0390911681526020016102ae565b3480156105d957600080fd5b506105b56105e8366004612722565b611128565b3480156105f957600080fd5b506102a26106083660046126fd565b611147565b34801561061957600080fd5b506102ee611170565b34801561062e57600080fd5b506007546102a290600160a81b900460ff1681565b34801561064f57600080fd5b5061034c600081565b34801561066457600080fd5b506102a2610673366004612696565b61117f565b34801561068457600080fd5b506102a2610693366004612696565b61121a565b3480156106a457600080fd5b5061034c60095481565b3480156106ba57600080fd5b506102d76106c93660046126e4565b611227565b3480156106da57600080fd5b506102d76106e936600461276e565b61125c565b3480156106fa57600080fd5b5061034c6107093660046126e4565b611524565b34801561071a57600080fd5b506102d761153b565b34801561072f57600080fd5b506007546102a290600160b01b900460ff1681565b34801561075057600080fd5b5061034c7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b34801561078457600080fd5b506102d76107933660046126fd565b61158c565b3480156107a457600080fd5b506102d7611596565b3480156107b957600080fd5b5061034c6107c836600461261c565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b3480156107ff57600080fd5b5061034c7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b34801561083357600080fd5b5061034c60085481565b34801561084957600080fd5b506102d76108583660046125ff565b6115e7565b34801561086957600080fd5b5061034c6b204fce5e3e2502611000000081565b60006001600160e01b03198216635a05180f60e01b14806108a257506108a282611768565b92915050565b6007546001600160a01b036101009091041633146108e15760405162461bcd60e51b81526004016108d8906128f4565b60405180910390fd5b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b606060058054610912906129be565b80601f016020809104026020016040519081016040528092919081815260200182805461093e906129be565b801561098b5780601f106109605761010080835404028352916020019161098b565b820191906000526020600020905b81548152906001019060200180831161096e57829003601f168201915b5050505050905090565b60006109a233848461179d565b50600192915050565b6007546001600160a01b036101009091041633146109db5760405162461bcd60e51b81526004016108d8906128f4565b6001600160a01b0381166109ee57600080fd5b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a082319060240160206040518083038186803b158015610a3057600080fd5b505afa158015610a44573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a689190612833565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0383169063a9059cbb90604401602060405180830381600087803b158015610ab357600080fd5b505af1158015610ac7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aeb91906126c2565b505050565b6000610afd8484846118c2565b6001600160a01b038416600090815260036020908152604080832033845290915290205482811015610b825760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016108d8565b610b968533610b918685612960565b61179d565b506001949350505050565b610bab8282611aa5565b6000828152600160205260409020610aeb90826116ed565b610bcd8282611acb565b6000828152600160205260409020610aeb9082611b45565b3360008181526003602090815260408083206001600160a01b038716845290915281205490916109a2918590610b91908690612929565b6007546001600160a01b03610100909104163314610c4c5760405162461bcd60e51b81526004016108d8906128f4565b60405147903390819083156108fc029084906000818181858888f19350505050158015610aeb573d6000803e3d6000fd5b610ca77f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33611147565b610d195760405162461bcd60e51b815260206004820152603960248201527f45524332305072657365744d696e7465725061757365723a206d75737420686160448201527f76652070617573657220726f6c6520746f20756e70617573650000000000000060648201526084016108d8565b610d21611b5a565b565b610d4d7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633611147565b610db85760405162461bcd60e51b815260206004820152603660248201527f45524332305072657365744d696e7465725061757365723a206d7573742068616044820152751d99481b5a5b9d195c881c9bdb19481d1bc81b5a5b9d60521b60648201526084016108d8565b610dc28282611bed565b5050565b610dd03382611cd8565b50565b600754600160a81b900460ff16610e235760405162461bcd60e51b8152602060048201526014602482015273427579696e67206973206e6f742061637469766560601b60448201526064016108d8565b3481600854610e329190612941565b1115610e805760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f72726563740060448201526064016108d8565b6b204fce5e3e2502611000000081610e9760045490565b610ea19190612929565b1115610f015760405162461bcd60e51b815260206004820152602960248201527f507572636861736520776f756c6420657863656564206d617820737570706c79604482015268206f662043454c444160b81b60648201526084016108d8565b610f1c33610f1783670de0b6b3a7640000612941565b611bed565b604051819033907fc48f1eb66c92fe194c52d6f8651b59ef1a45d920ddcf2a7cd9191a21f94d76fa90600090a350565b6007546001600160a01b03610100909104163314610f7c5760405162461bcd60e51b81526004016108d8906128f4565b60075460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360078054610100600160a81b0319169055565b6000610fd883336107c8565b9050818110156110365760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b60648201526084016108d8565b6110458333610b918585612960565b610aeb8383611cd8565b6007546001600160a01b0361010090910416331461107f5760405162461bcd60e51b81526004016108d8906128f4565b600955565b6110ae7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33611147565b6111205760405162461bcd60e51b815260206004820152603760248201527f45524332305072657365744d696e7465725061757365723a206d75737420686160448201527f76652070617573657220726f6c6520746f20706175736500000000000000000060648201526084016108d8565b610d21611e33565b60008281526001602052604081206111409083611eae565b9392505050565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b606060068054610912906129be565b3360009081526003602090815260408083206001600160a01b0386168452909152812054828110156112015760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016108d8565b6112103385610b918685612960565b5060019392505050565b60006109a23384846118c2565b6007546001600160a01b036101009091041633146112575760405162461bcd60e51b81526004016108d8906128f4565b600855565b600754600160b01b900460ff166112ab5760405162461bcd60e51b8152602060048201526013602482015272436c61696d206973206e6f742061637469766560681b60448201526064016108d8565b6009548311156112f65760405162461bcd60e51b815260206004820152601660248201527510db185a5b481b585e1a5b5d5b48195e18d95959195960521b60448201526064016108d8565b6b204fce5e3e250261100000008361130d60045490565b6113179190612929565b11156113745760405162461bcd60e51b815260206004820152602660248201527f436c61696d20776f756c6420657863656564206d617820737570706c79206f666044820152652043454c444160d01b60648201526084016108d8565b336000908152600b6020908152604080832085845290915290205460ff16156113d15760405162461bcd60e51b815260206004820152600f60248201526e105b1c9958591e4818db185a5b5959608a1b60448201526064016108d8565b60408051336020808301919091528183018690526060820185905260808083018590528351808403909101815260a0830184528051908201207f19457468657265756d205369676e6564204d6573736167653a0a33320000000060c084015260dc8084018290528451808503909101815260fc9093019093528151910120600061145b8288611eba565b600a549091506001600160a01b038083169116146114b15760405162461bcd60e51b81526020600482015260136024820152720a6d2cedccae4e640c8dedc4ee840dac2e8c6d606b1b60448201526064016108d8565b336000818152600b602090815260408083208984529091529020805460ff191660011790556114ec90610f1788670de0b6b3a7640000612941565b6040518490879033907fa14f30f3957776d581f269d5ec253ce2d6966ae35a8e9d08a73c3a99505a003c90600090a450505050505050565b60008181526001602052604081206108a290611f70565b6007546001600160a01b0361010090910416331461156b5760405162461bcd60e51b81526004016108d8906128f4565b6007805460ff60b01b198116600160b01b9182900460ff1615909102179055565b610bcd8282611f7a565b6007546001600160a01b036101009091041633146115c65760405162461bcd60e51b81526004016108d8906128f4565b6007805460ff60a81b198116600160a81b9182900460ff1615909102179055565b6007546001600160a01b036101009091041633146116175760405162461bcd60e51b81526004016108d8906128f4565b6001600160a01b03811661167c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108d8565b6007546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600780546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b610dc28282611fa0565b6000611140836001600160a01b038416612024565b60075460ff1615610aeb5760405162461bcd60e51b815260206004820152602a60248201527f45524332305061757361626c653a20746f6b656e207472616e736665722077686044820152691a5b19481c185d5cd95960b21b60648201526084016108d8565b60006001600160e01b03198216637965db0b60e01b14806108a257506301ffc9a760e01b6001600160e01b03198316146108a2565b6001600160a01b0383166117ff5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016108d8565b6001600160a01b0382166118605760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016108d8565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166119265760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016108d8565b6001600160a01b0382166119885760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016108d8565b611993838383612073565b6001600160a01b03831660009081526002602052604090205481811015611a0b5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016108d8565b611a158282612960565b6001600160a01b038086166000908152600260205260408082209390935590851681529081208054849290611a4b908490612929565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611a9791815260200190565b60405180910390a350505050565b600082815260208190526040902060010154611ac1813361207e565b610aeb8383611fa0565b6001600160a01b0381163314611b3b5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084016108d8565b610dc282826120e2565b6000611140836001600160a01b038416612147565b60075460ff16611ba35760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016108d8565b6007805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b038216611c435760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016108d8565b611c4f60008383612073565b8060046000828254611c619190612929565b90915550506001600160a01b03821660009081526002602052604081208054839290611c8e908490612929565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b038216611d385760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016108d8565b611d4482600083612073565b6001600160a01b03821660009081526002602052604090205481811015611db85760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016108d8565b611dc28282612960565b6001600160a01b03841660009081526002602052604081209190915560048054849290611df0908490612960565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020016118b5565b60075460ff1615611e795760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016108d8565b6007805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611bd03390565b60006111408383612234565b600080600080845160411415611ee45750505060208201516040830151606084015160001a611f5a565b845160401415611f125750505060408201516020830151906001600160ff1b0381169060ff1c601b01611f5a565b60405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016108d8565b611f66868285856122ba565b9695505050505050565b60006108a2825490565b600082815260208190526040902060010154611f96813361207e565b610aeb83836120e2565b611faa8282611147565b610dc2576000828152602081815260408083206001600160a01b03851684529091529020805460ff19166001179055611fe03390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b600081815260018301602052604081205461206b575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556108a2565b5060006108a2565b610aeb838383611702565b6120888282611147565b610dc2576120a0816001600160a01b03166014612463565b6120ab836020612463565b6040516020016120bc92919061284c565b60408051601f198184030181529082905262461bcd60e51b82526108d8916004016128c1565b6120ec8282611147565b15610dc2576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6000818152600183016020526040812054801561222a57600061216b600183612960565b855490915060009061217f90600190612960565b9050600086600001828154811061219857612198612a25565b90600052602060002001549050808760000184815481106121bb576121bb612a25565b6000918252602080832090910192909255828152600189019091526040902084905586548790806121ee576121ee612a0f565b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506108a2565b60009150506108a2565b815460009082106122925760405162461bcd60e51b815260206004820152602260248201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016108d8565b8260000182815481106122a7576122a7612a25565b9060005260206000200154905092915050565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08211156123375760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b60648201526084016108d8565b8360ff16601b148061234c57508360ff16601c145b6123a35760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b60648201526084016108d8565b6040805160008082526020820180845288905260ff871692820192909252606081018590526080810184905260019060a0016020604051602081039080840390855afa1580156123f7573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661245a5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016108d8565b95945050505050565b60606000612472836002612941565b61247d906002612929565b67ffffffffffffffff81111561249557612495612a3b565b6040519080825280601f01601f1916602001820160405280156124bf576020820181803683370190505b509050600360fc1b816000815181106124da576124da612a25565b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061250957612509612a25565b60200101906001600160f81b031916908160001a905350600061252d846002612941565b612538906001612929565b90505b60018111156125b0576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811061256c5761256c612a25565b1a60f81b82828151811061258257612582612a25565b60200101906001600160f81b031916908160001a90535060049490941c936125a9816129a7565b905061253b565b5083156111405760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016108d8565b60006020828403121561261157600080fd5b813561114081612a51565b6000806040838503121561262f57600080fd5b823561263a81612a51565b9150602083013561264a81612a51565b809150509250929050565b60008060006060848603121561266a57600080fd5b833561267581612a51565b9250602084013561268581612a51565b929592945050506040919091013590565b600080604083850312156126a957600080fd5b82356126b481612a51565b946020939093013593505050565b6000602082840312156126d457600080fd5b8151801515811461114057600080fd5b6000602082840312156126f657600080fd5b5035919050565b6000806040838503121561271057600080fd5b82359150602083013561264a81612a51565b6000806040838503121561273557600080fd5b50508035926020909101359150565b60006020828403121561275657600080fd5b81356001600160e01b03198116811461114057600080fd5b6000806000806080858703121561278457600080fd5b843567ffffffffffffffff8082111561279c57600080fd5b818701915087601f8301126127b057600080fd5b8135818111156127c2576127c2612a3b565b604051601f8201601f19908116603f011681019083821181831017156127ea576127ea612a3b565b816040528281528a602084870101111561280357600080fd5b82602086016020830137600060209382018401529a91890135995050604088013597606001359650945050505050565b60006020828403121561284557600080fd5b5051919050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351612884816017850160208801612977565b7001034b99036b4b9b9b4b733903937b6329607d1b60179184019182015283516128b5816028840160208801612977565b01602801949350505050565b60208152600082518060208401526128e0816040850160208701612977565b601f01601f19169190910160400192915050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000821982111561293c5761293c6129f9565b500190565b600081600019048311821515161561295b5761295b6129f9565b500290565b600082821015612972576129726129f9565b500390565b60005b8381101561299257818101518382015260200161297a565b838111156129a1576000848401525b50505050565b6000816129b6576129b66129f9565b506000190190565b600181811c908216806129d257607f821691505b602082108114156129f357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610dd057600080fdfea264697066735822122053cb0e5c91f7638a90f01908bccf9f79d297924bd49779c3a34afad80c4ebc0b64736f6c63430008070033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000000000000000000000000000000000000005f5e100

-----Decoded View---------------
Arg [0] : initialSupply (uint256): 100000000

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000005f5e100


Deployed Bytecode Sourcemap

56353:3378:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42726:227;;;;;;;;;;-1:-1:-1;42726:227:0;;;;;:::i;:::-;;:::i;:::-;;;6801:14:1;;6794:22;6776:41;;6764:2;6749:18;42726:227:0;;;;;;;;59107:112;;;;;;;;;;-1:-1:-1;59107:112:0;;;;;:::i;:::-;;:::i;:::-;;6560:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;8727:169::-;;;;;;;;;;-1:-1:-1;8727:169:0;;;;;:::i;:::-;;:::i;59529:193::-;;;;;;;;;;-1:-1:-1;59529:193:0;;;;;:::i;:::-;;:::i;7680:108::-;;;;;;;;;;-1:-1:-1;7768:12:0;;7680:108;;;6974:25:1;;;6962:2;6947:18;7680:108:0;6828:177:1;9378:422:0;;;;;;;;;;-1:-1:-1;9378:422:0;;;;;:::i;:::-;;:::i;29022:123::-;;;;;;;;;;-1:-1:-1;29022:123:0;;;;;:::i;:::-;29088:7;29115:12;;;;;;;;;;:22;;;;29022:123;44097:165;;;;;;;;;;-1:-1:-1;44097:165:0;;;;;:::i;:::-;;:::i;7522:93::-;;;;;;;;;;-1:-1:-1;7522:93:0;;7605:2;21297:36:1;;21285:2;21270:18;7522:93:0;21155:184:1;44620:174:0;;;;;;;;;;-1:-1:-1;44620:174:0;;;;;:::i;:::-;;:::i;10209:215::-;;;;;;;;;;-1:-1:-1;10209:215:0;;;;;:::i;:::-;;:::i;59342:182::-;;;;;;;;;;;;;:::i;47450:178::-;;;;;;;;;;;;;:::i;46641:205::-;;;;;;;;;;-1:-1:-1;46641:205:0;;;;;:::i;:::-;;:::i;15830:91::-;;;;;;;;;;-1:-1:-1;15830:91:0;;;;;:::i;:::-;;:::i;57213:426::-;;;;;;:::i;:::-;;:::i;56784:55::-;;;;;;;;;;-1:-1:-1;56784:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;17662:86;;;;;;;;;;-1:-1:-1;17733:7:0;;;;17662:86;;7851:127;;;;;;;;;;-1:-1:-1;7851:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;7952:18:0;7925:7;7952:18;;;:9;:18;;;;;;;7851:127;49587:148;;;;;;;;;;;;;:::i;16240:332::-;;;;;;;;;;-1:-1:-1;16240:332:0;;;;;:::i;:::-;;:::i;59227:107::-;;;;;;;;;;-1:-1:-1;59227:107:0;;;;;:::i;:::-;;:::i;47060:172::-;;;;;;;;;;;;;:::i;48928:87::-;;;;;;;;;;-1:-1:-1;49001:6:0;;;;;-1:-1:-1;;;;;49001:6:0;48928:87;;;-1:-1:-1;;;;;5891:32:1;;;5873:51;;5861:2;5846:18;48928:87:0;5727:203:1;43552:145:0;;;;;;;;;;-1:-1:-1;43552:145:0;;;;;:::i;:::-;;:::i;28020:139::-;;;;;;;;;;-1:-1:-1;28020:139:0;;;;;:::i;:::-;;:::i;6779:104::-;;;;;;;;;;;;;:::i;56443:29::-;;;;;;;;;;-1:-1:-1;56443:29:0;;;;-1:-1:-1;;;56443:29:0;;;;;;25985:49;;;;;;;;;;-1:-1:-1;25985:49:0;26030:4;25985:49;;10927:377;;;;;;;;;;-1:-1:-1;10927:377:0;;;;;:::i;:::-;;:::i;8191:175::-;;;;;;;;;;-1:-1:-1;8191:175:0;;;;;:::i;:::-;;:::i;56625:39::-;;;;;;;;;;;;;;;;58993:106;;;;;;;;;;-1:-1:-1;58993:106:0;;;;;:::i;:::-;;:::i;57681:899::-;;;;;;;;;;-1:-1:-1;57681:899:0;;;;;:::i;:::-;;:::i;43871:134::-;;;;;;;;;;-1:-1:-1;43871:134:0;;;;;:::i;:::-;;:::i;58892:93::-;;;;;;;;;;;;;:::i;56479:31::-;;;;;;;;;;-1:-1:-1;56479:31:0;;;;-1:-1:-1;;;56479:31:0;;;;;;45883:62;;;;;;;;;;;;45921:24;45883:62;;44355:170;;;;;;;;;;-1:-1:-1;44355:170:0;;;;;:::i;:::-;;:::i;58797:87::-;;;;;;;;;;;;;:::i;8429:151::-;;;;;;;;;;-1:-1:-1;8429:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;8545:18:0;;;8518:7;8545:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8429:151;45952:62;;;;;;;;;;;;45990:24;45952:62;;56517:40;;;;;;;;;;;;;;;;49890:244;;;;;;;;;;-1:-1:-1;49890:244:0;;;;;:::i;:::-;;:::i;56565:53::-;;;;;;;;;;;;56601:17;56565:53;;42726:227;42811:4;-1:-1:-1;;;;;;42835:57:0;;-1:-1:-1;;;42835:57:0;;:110;;;42909:36;42933:11;42909:23;:36::i;:::-;42828:117;42726:227;-1:-1:-1;;42726:227:0:o;59107:112::-;49001:6;;-1:-1:-1;;;;;49001:6:0;;;;;4219:10;49156:23;49148:68;;;;-1:-1:-1;;;49148:68:0;;;;;;;:::i;:::-;;;;;;;;;59187:13:::1;:24:::0;;-1:-1:-1;;;;;;59187:24:0::1;-1:-1:-1::0;;;;;59187:24:0;;;::::1;::::0;;;::::1;::::0;;59107:112::o;6560:100::-;6614:13;6647:5;6640:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6560:100;:::o;8727:169::-;8810:4;8827:39;4219:10;8850:7;8859:6;8827:8;:39::i;:::-;-1:-1:-1;8884:4:0;8727:169;;;;:::o;59529:193::-;49001:6;;-1:-1:-1;;;;;49001:6:0;;;;;4219:10;49156:23;49148:68;;;;-1:-1:-1;;;49148:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;59595:28:0;::::1;59587:37;;;::::0;::::1;;59647:30;::::0;-1:-1:-1;;;59647:30:0;;59671:4:::1;59647:30;::::0;::::1;5873:51:1::0;59629:15:0::1;::::0;-1:-1:-1;;;;;59647:15:0;::::1;::::0;::::1;::::0;5846:18:1;;59647:30:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;59682:35;::::0;-1:-1:-1;;;59682:35:0;;59697:10:::1;59682:35;::::0;::::1;6109:51:1::0;6176:18;;;6169:34;;;59629:48:0;;-1:-1:-1;;;;;;59682:14:0;::::1;::::0;::::1;::::0;6082:18:1;;59682:35:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;59582:140;59529:193:::0;:::o;9378:422::-;9484:4;9501:36;9511:6;9519:9;9530:6;9501:9;:36::i;:::-;-1:-1:-1;;;;;9577:19:0;;9550:24;9577:19;;;:11;:19;;;;;;;;4219:10;9577:33;;;;;;;;9629:26;;;;9621:79;;;;-1:-1:-1;;;9621:79:0;;15240:2:1;9621:79:0;;;15222:21:1;15279:2;15259:18;;;15252:30;15318:34;15298:18;;;15291:62;-1:-1:-1;;;15369:18:1;;;15362:38;15417:19;;9621:79:0;15038:404:1;9621:79:0;9711:57;9720:6;4219:10;9742:25;9761:6;9742:16;:25;:::i;:::-;9711:8;:57::i;:::-;-1:-1:-1;9788:4:0;;9378:422;-1:-1:-1;;;;9378:422:0:o;44097:165::-;44182:30;44198:4;44204:7;44182:15;:30::i;:::-;44223:18;;;;:12;:18;;;;;:31;;44246:7;44223:22;:31::i;44620:174::-;44708:33;44727:4;44733:7;44708:18;:33::i;:::-;44752:18;;;;:12;:18;;;;;:34;;44778:7;44752:25;:34::i;10209:215::-;4219:10;10297:4;10346:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;10346:34:0;;;;;;;;;;10297:4;;10314:80;;10337:7;;10346:47;;10383:10;;10346:47;:::i;59342:182::-;49001:6;;-1:-1:-1;;;;;49001:6:0;;;;;4219:10;49156:23;49148:68;;;;-1:-1:-1;;;49148:68:0;;;;;;;:::i;:::-;59492:24:::1;::::0;59405:21:::1;::::0;59470:10:::1;::::0;;;59492:24;::::1;;;::::0;59405:21;;59390:12:::1;59492:24:::0;59390:12;59492:24;59405:21;59470:10;59492:24;::::1;;;;;;;;;;;;;::::0;::::1;;;;47450:178:::0;47503:34;45990:24;4219:10;28020:139;:::i;47503:34::-;47495:104;;;;-1:-1:-1;;;47495:104:0;;10636:2:1;47495:104:0;;;10618:21:1;10675:2;10655:18;;;10648:30;10714:34;10694:18;;;10687:62;10785:27;10765:18;;;10758:55;10830:19;;47495:104:0;10434:421:1;47495:104:0;47610:10;:8;:10::i;:::-;47450:178::o;46641:205::-;46717:34;45921:24;4219:10;28020:139;:::i;46717:34::-;46709:101;;;;-1:-1:-1;;;46709:101:0;;16010:2:1;46709:101:0;;;15992:21:1;16049:2;16029:18;;;16022:30;16088:34;16068:18;;;16061:62;-1:-1:-1;;;16139:18:1;;;16132:52;16201:19;;46709:101:0;15808:418:1;46709:101:0;46821:17;46827:2;46831:6;46821:5;:17::i;:::-;46641:205;;:::o;15830:91::-;15886:27;4219:10;15906:6;15886:5;:27::i;:::-;15830:91;:::o;57213:426::-;57300:9;;-1:-1:-1;;;57300:9:0;;;;57292:42;;;;-1:-1:-1;;;57292:42:0;;17646:2:1;57292:42:0;;;17628:21:1;17685:2;17665:18;;;17658:30;-1:-1:-1;;;17704:18:1;;;17697:50;17764:18;;57292:42:0;17444:344:1;57292:42:0;57376:9;57366:6;57353:10;;:19;;;;:::i;:::-;:32;;57345:76;;;;-1:-1:-1;;;57345:76:0;;13037:2:1;57345:76:0;;;13019:21:1;13076:2;13056:18;;;13049:30;13115:33;13095:18;;;13088:61;13166:18;;57345:76:0;12835:355:1;57345:76:0;56601:17;57456:6;57440:13;7768:12;;;7680:108;57440:13;:22;;;;:::i;:::-;:35;;57432:89;;;;-1:-1:-1;;;57432:89:0;;18400:2:1;57432:89:0;;;18382:21:1;18439:2;18419:18;;;18412:30;18478:34;18458:18;;;18451:62;-1:-1:-1;;;18529:18:1;;;18522:39;18578:19;;57432:89:0;18198:405:1;57432:89:0;57534:38;4219:10;57554:17;:6;57564;57554:17;:::i;:::-;57534:5;:38::i;:::-;57598:33;;57624:6;;4219:10;;57598:33;;;;;57213:426;:::o;49587:148::-;49001:6;;-1:-1:-1;;;;;49001:6:0;;;;;4219:10;49156:23;49148:68;;;;-1:-1:-1;;;49148:68:0;;;;;;;:::i;:::-;49678:6:::1;::::0;49657:40:::1;::::0;49694:1:::1;::::0;49678:6:::1;::::0;::::1;-1:-1:-1::0;;;;;49678:6:0::1;::::0;49657:40:::1;::::0;49694:1;;49657:40:::1;49708:6;:19:::0;;-1:-1:-1;;;;;;49708:19:0::1;::::0;;49587:148::o;16240:332::-;16317:24;16344:32;16354:7;4219:10;8429:151;:::i;16344:32::-;16317:59;;16415:6;16395:16;:26;;16387:75;;;;-1:-1:-1;;;16387:75:0;;16433:2:1;16387:75:0;;;16415:21:1;16472:2;16452:18;;;16445:30;16511:34;16491:18;;;16484:62;-1:-1:-1;;;16562:18:1;;;16555:34;16606:19;;16387:75:0;16231:400:1;16387:75:0;16473:58;16482:7;4219:10;16505:25;16524:6;16505:16;:25;:::i;16473:58::-;16542:22;16548:7;16557:6;16542:5;:22::i;59227:107::-;49001:6;;-1:-1:-1;;;;;49001:6:0;;;;;4219:10;49156:23;49148:68;;;;-1:-1:-1;;;49148:68:0;;;;;;;:::i;:::-;59303:14:::1;:23:::0;59227:107::o;47060:172::-;47111:34;45990:24;4219:10;28020:139;:::i;47111:34::-;47103:102;;;;-1:-1:-1;;;47103:102:0;;18810:2:1;47103:102:0;;;18792:21:1;18849:2;18829:18;;;18822:30;18888:34;18868:18;;;18861:62;18959:25;18939:18;;;18932:53;19002:19;;47103:102:0;18608:419:1;47103:102:0;47216:8;:6;:8::i;43552:145::-;43634:7;43661:18;;;:12;:18;;;;;:28;;43683:5;43661:21;:28::i;:::-;43654:35;43552:145;-1:-1:-1;;;43552:145:0:o;28020:139::-;28098:4;28122:12;;;;;;;;;;;-1:-1:-1;;;;;28122:29:0;;;;;;;;;;;;;;;28020:139::o;6779:104::-;6835:13;6868:7;6861:14;;;;;:::i;10927:377::-;4219:10;11020:4;11064:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;11064:34:0;;;;;;;;;;11117:35;;;;11109:85;;;;-1:-1:-1;;;11109:85:0;;19582:2:1;11109:85:0;;;19564:21:1;19621:2;19601:18;;;19594:30;19660:34;19640:18;;;19633:62;-1:-1:-1;;;19711:18:1;;;19704:35;19756:19;;11109:85:0;19380:401:1;11109:85:0;11205:67;4219:10;11228:7;11237:34;11256:15;11237:16;:34;:::i;11205:67::-;-1:-1:-1;11292:4:0;;10927:377;-1:-1:-1;;;10927:377:0:o;8191:175::-;8277:4;8294:42;4219:10;8318:9;8329:6;8294:9;:42::i;58993:106::-;49001:6;;-1:-1:-1;;;;;49001:6:0;;;;;4219:10;49156:23;49148:68;;;;-1:-1:-1;;;49148:68:0;;;;;;;:::i;:::-;59070:10:::1;:21:::0;58993:106::o;57681:899::-;57842:11;;-1:-1:-1;;;57842:11:0;;;;57834:43;;;;-1:-1:-1;;;57834:43:0;;14892:2:1;57834:43:0;;;14874:21:1;14931:2;14911:18;;;14904:30;-1:-1:-1;;;14950:18:1;;;14943:49;15009:18;;57834:43:0;14690:343:1;57834:43:0;57906:14;;57896:6;:24;;57888:59;;;;-1:-1:-1;;;57888:59:0;;11062:2:1;57888:59:0;;;11044:21:1;11101:2;11081:18;;;11074:30;-1:-1:-1;;;11120:18:1;;;11113:52;11182:18;;57888:59:0;10860:346:1;57888:59:0;56601:17;57982:6;57966:13;7768:12;;;7680:108;57966:13;:22;;;;:::i;:::-;:35;;57958:86;;;;-1:-1:-1;;;57958:86:0;;12223:2:1;57958:86:0;;;12205:21:1;12262:2;12242:18;;;12235:30;12301:34;12281:18;;;12274:62;-1:-1:-1;;;12352:18:1;;;12345:36;12398:19;;57958:86:0;12021:402:1;57958:86:0;4219:10;58064:20;;;;:6;:20;;;;;;;;:27;;;;;;;;;;;58063:28;58055:56;;;;-1:-1:-1;;;58055:56:0;;14548:2:1;58055:56:0;;;14530:21:1;14587:2;14567:18;;;14560:30;-1:-1:-1;;;14606:18:1;;;14599:45;14661:18;;58055:56:0;14346:339:1;58055:56:0;58736:44;;;4219:10;58736:44;;;;6445:51:1;;;;6512:18;;;6505:34;;;6555:18;;;6548:34;;;6598:18;;;;6591:34;;;58736:44:0;;;;;;;;;;6417:19:1;;;58736:44:0;;58726:55;;;;;;4793:66:1;58226:59:0;;;4781:79:1;4876:12;;;;4869:28;;;58226:59:0;;;;;;;;;;4913:12:1;;;;58226:59:0;;;58216:70;;;;;-1:-1:-1;58314:30:0;58216:70;58334:9;58314:19;:30::i;:::-;58373:13;;58297:47;;-1:-1:-1;;;;;;58363:23:0;;;58373:13;;58363:23;58355:55;;;;-1:-1:-1;;;58355:55:0;;19234:2:1;58355:55:0;;;19216:21:1;19273:2;19253:18;;;19246:30;-1:-1:-1;;;19292:18:1;;;19285:49;19351:18;;58355:55:0;19032:343:1;58355:55:0;4219:10;58423:20;;;;:6;:20;;;;;;;;:27;;;;;;;;:34;;-1:-1:-1;;58423:34:0;58453:4;58423:34;;;58468:38;;58488:17;:6;58498;58488:17;:::i;58468:38::-;58532:40;;58567:4;;58559:6;;4219:10;;58532:40;;;;;57823:757;;;57681:899;;;;:::o;43871:134::-;43943:7;43970:18;;;:12;:18;;;;;:27;;:25;:27::i;58892:93::-;49001:6;;-1:-1:-1;;;;;49001:6:0;;;;;4219:10;49156:23;49148:68;;;;-1:-1:-1;;;49148:68:0;;;;;;;:::i;:::-;58966:11:::1;::::0;;-1:-1:-1;;;;58951:26:0;::::1;-1:-1:-1::0;;;58966:11:0;;;::::1;;;58965:12;58951:26:::0;;::::1;;::::0;;58892:93::o;44355:170::-;44441:31;44458:4;44464:7;44441:16;:31::i;58797:87::-;49001:6;;-1:-1:-1;;;;;49001:6:0;;;;;4219:10;49156:23;49148:68;;;;-1:-1:-1;;;49148:68:0;;;;;;;:::i;:::-;58867:9:::1;::::0;;-1:-1:-1;;;;58854:22:0;::::1;-1:-1:-1::0;;;58867:9:0;;;::::1;;;58866:10;58854:22:::0;;::::1;;::::0;;58797:87::o;49890:244::-;49001:6;;-1:-1:-1;;;;;49001:6:0;;;;;4219:10;49156:23;49148:68;;;;-1:-1:-1;;;49148:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;49979:22:0;::::1;49971:73;;;::::0;-1:-1:-1;;;49971:73:0;;11413:2:1;49971:73:0::1;::::0;::::1;11395:21:1::0;11452:2;11432:18;;;11425:30;11491:34;11471:18;;;11464:62;-1:-1:-1;;;11542:18:1;;;11535:36;11588:19;;49971:73:0::1;11211:402:1::0;49971:73:0::1;50081:6;::::0;50060:38:::1;::::0;-1:-1:-1;;;;;50060:38:0;;::::1;::::0;50081:6:::1;::::0;::::1;;::::0;50060:38:::1;::::0;;;::::1;50109:6;:17:::0;;-1:-1:-1;;;;;50109:17:0;;::::1;;;-1:-1:-1::0;;;;;;50109:17:0;;::::1;::::0;;;::::1;::::0;;49890:244::o;31256:112::-;31335:25;31346:4;31352:7;31335:10;:25::i;38852:152::-;38922:4;38946:50;38951:3;-1:-1:-1;;;;;38971:23:0;;38946:4;:50::i;19449:238::-;17733:7;;;;19623:9;19615:64;;;;-1:-1:-1;;;19615:64:0;;20764:2:1;19615:64:0;;;20746:21:1;20803:2;20783:18;;;20776:30;20842:34;20822:18;;;20815:62;-1:-1:-1;;;20893:18:1;;;20886:40;20943:19;;19615:64:0;20562:406:1;27711:217:0;27796:4;-1:-1:-1;;;;;;27820:47:0;;-1:-1:-1;;;27820:47:0;;:100;;-1:-1:-1;;;;;;;;;;23538:40:0;;;27884:36;23429:157;14283:346;-1:-1:-1;;;;;14385:19:0;;14377:68;;;;-1:-1:-1;;;14377:68:0;;17995:2:1;14377:68:0;;;17977:21:1;18034:2;18014:18;;;18007:30;18073:34;18053:18;;;18046:62;-1:-1:-1;;;18124:18:1;;;18117:34;18168:19;;14377:68:0;17793:400:1;14377:68:0;-1:-1:-1;;;;;14464:21:0;;14456:68;;;;-1:-1:-1;;;14456:68:0;;11820:2:1;14456:68:0;;;11802:21:1;11859:2;11839:18;;;11832:30;11898:34;11878:18;;;11871:62;-1:-1:-1;;;11949:18:1;;;11942:32;11991:19;;14456:68:0;11618:398:1;14456:68:0;-1:-1:-1;;;;;14537:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;14589:32;;6974:25:1;;;14589:32:0;;6947:18:1;14589:32:0;;;;;;;;14283:346;;;:::o;11794:604::-;-1:-1:-1;;;;;11900:20:0;;11892:70;;;;-1:-1:-1;;;11892:70:0;;17240:2:1;11892:70:0;;;17222:21:1;17279:2;17259:18;;;17252:30;17318:34;17298:18;;;17291:62;-1:-1:-1;;;17369:18:1;;;17362:35;17414:19;;11892:70:0;17038:401:1;11892:70:0;-1:-1:-1;;;;;11981:23:0;;11973:71;;;;-1:-1:-1;;;11973:71:0;;9120:2:1;11973:71:0;;;9102:21:1;9159:2;9139:18;;;9132:30;9198:34;9178:18;;;9171:62;-1:-1:-1;;;9249:18:1;;;9242:33;9292:19;;11973:71:0;8918:399:1;11973:71:0;12057:47;12078:6;12086:9;12097:6;12057:20;:47::i;:::-;-1:-1:-1;;;;;12141:17:0;;12117:21;12141:17;;;:9;:17;;;;;;12177:23;;;;12169:74;;;;-1:-1:-1;;;12169:74:0;;12630:2:1;12169:74:0;;;12612:21:1;12669:2;12649:18;;;12642:30;12708:34;12688:18;;;12681:62;-1:-1:-1;;;12759:18:1;;;12752:36;12805:19;;12169:74:0;12428:402:1;12169:74:0;12274:22;12290:6;12274:13;:22;:::i;:::-;-1:-1:-1;;;;;12254:17:0;;;;;;;:9;:17;;;;;;:42;;;;12307:20;;;;;;;;:30;;12331:6;;12254:17;12307:30;;12331:6;;12307:30;:::i;:::-;;;;;;;;12372:9;-1:-1:-1;;;;;12355:35:0;12364:6;-1:-1:-1;;;;;12355:35:0;;12383:6;12355:35;;;;6974:25:1;;6962:2;6947:18;;6828:177;12355:35:0;;;;;;;;11881:517;11794:604;;;:::o;29407:147::-;29088:7;29115:12;;;;;;;;;;:22;;;27589:30;27600:4;4219:10;27589;:30::i;:::-;29521:25:::1;29532:4;29538:7;29521:10;:25::i;30455:218::-:0;-1:-1:-1;;;;;30551:23:0;;4219:10;30551:23;30543:83;;;;-1:-1:-1;;;30543:83:0;;19988:2:1;30543:83:0;;;19970:21:1;20027:2;20007:18;;;20000:30;20066:34;20046:18;;;20039:62;-1:-1:-1;;;20117:18:1;;;20110:45;20172:19;;30543:83:0;19786:411:1;30543:83:0;30639:26;30651:4;30657:7;30639:11;:26::i;39180:158::-;39253:4;39277:53;39285:3;-1:-1:-1;;;;;39305:23:0;;39277:7;:53::i;18721:120::-;17733:7;;;;18257:41;;;;-1:-1:-1;;;18257:41:0;;9524:2:1;18257:41:0;;;9506:21:1;9563:2;9543:18;;;9536:30;-1:-1:-1;;;9582:18:1;;;9575:50;9642:18;;18257:41:0;9322:344:1;18257:41:0;18780:7:::1;:15:::0;;-1:-1:-1;;18780:15:0::1;::::0;;18811:22:::1;4219:10:::0;18820:12:::1;18811:22;::::0;-1:-1:-1;;;;;5891:32:1;;;5873:51;;5861:2;5846:18;18811:22:0::1;;;;;;;18721:120::o:0;12680:338::-;-1:-1:-1;;;;;12764:21:0;;12756:65;;;;-1:-1:-1;;;12756:65:0;;20404:2:1;12756:65:0;;;20386:21:1;20443:2;20423:18;;;20416:30;20482:33;20462:18;;;20455:61;20533:18;;12756:65:0;20202:355:1;12756:65:0;12834:49;12863:1;12867:7;12876:6;12834:20;:49::i;:::-;12912:6;12896:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;12929:18:0;;;;;;:9;:18;;;;;:28;;12951:6;;12929:18;:28;;12951:6;;12929:28;:::i;:::-;;;;-1:-1:-1;;12973:37:0;;6974:25:1;;;-1:-1:-1;;;;;12973:37:0;;;12990:1;;12973:37;;6962:2:1;6947:18;12973:37:0;;;;;;;12680:338;;:::o;13351:494::-;-1:-1:-1;;;;;13435:21:0;;13427:67;;;;-1:-1:-1;;;13427:67:0;;16838:2:1;13427:67:0;;;16820:21:1;16877:2;16857:18;;;16850:30;16916:34;16896:18;;;16889:62;-1:-1:-1;;;16967:18:1;;;16960:31;17008:19;;13427:67:0;16636:397:1;13427:67:0;13507:49;13528:7;13545:1;13549:6;13507:20;:49::i;:::-;-1:-1:-1;;;;;13594:18:0;;13569:22;13594:18;;;:9;:18;;;;;;13631:24;;;;13623:71;;;;-1:-1:-1;;;13623:71:0;;9873:2:1;13623:71:0;;;9855:21:1;9912:2;9892:18;;;9885:30;9951:34;9931:18;;;9924:62;-1:-1:-1;;;10002:18:1;;;9995:32;10044:19;;13623:71:0;9671:398:1;13623:71:0;13726:23;13743:6;13726:14;:23;:::i;:::-;-1:-1:-1;;;;;13705:18:0;;;;;;:9;:18;;;;;:44;;;;13760:12;:22;;13776:6;;13705:18;13760:22;;13776:6;;13760:22;:::i;:::-;;;;-1:-1:-1;;13800:37:0;;6974:25:1;;;13826:1:0;;-1:-1:-1;;;;;13800:37:0;;;;;6962:2:1;6947:18;13800:37:0;6828:177:1;18462:118:0;17733:7;;;;17987:9;17979:38;;;;-1:-1:-1;;;17979:38:0;;13800:2:1;17979:38:0;;;13782:21:1;13839:2;13819:18;;;13812:30;-1:-1:-1;;;13858:18:1;;;13851:46;13914:18;;17979:38:0;13598:340:1;17979:38:0;18522:7:::1;:14:::0;;-1:-1:-1;;18522:14:0::1;18532:4;18522:14;::::0;;18552:20:::1;18559:12;4219:10:::0;;4139:98;40138:158;40212:7;40263:22;40267:3;40279:5;40263:3;:22::i;51272:1492::-;51350:7;51427:9;51447;51467:7;51687:9;:16;51707:2;51687:22;51683:1032;;;-1:-1:-1;;;51974:4:0;51959:20;;51953:27;52024:4;52009:20;;52003:27;52082:4;52067:20;;52061:27;52058:1;52053:36;51683:1032;;;52125:9;:16;52145:2;52125:22;52121:594;;;-1:-1:-1;;;52417:4:0;52402:20;;52396:27;52467:4;52452:20;;52446:27;;-1:-1:-1;;;;;52496:75:0;;;52602:3;52598:12;52612:2;52594:21;52121:594;;;52662:41;;-1:-1:-1;;;52662:41:0;;10276:2:1;52662:41:0;;;10258:21:1;10315:2;10295:18;;;10288:30;10354:33;10334:18;;;10327:61;10405:18;;52662:41:0;10074:355:1;52121:594:0;52734:22;52742:4;52748:1;52751;52754;52734:7;:22::i;:::-;52727:29;51272:1492;-1:-1:-1;;;;;;51272:1492:0:o;39677:117::-;39740:7;39767:19;39775:3;36434:18;;36351:109;29799:149;29088:7;29115:12;;;;;;;;;;:22;;;27589:30;27600:4;4219:10;27589;:30::i;:::-;29914:26:::1;29926:4;29932:7;29914:11;:26::i;31703:229::-:0;31778:22;31786:4;31792:7;31778;:22::i;:::-;31773:152;;31817:6;:12;;;;;;;;;;;-1:-1:-1;;;;;31817:29:0;;;;;;;;;:36;;-1:-1:-1;;31817:36:0;31849:4;31817:36;;;31900:12;4219:10;;4139:98;31900:12;-1:-1:-1;;;;;31873:40:0;31891:7;-1:-1:-1;;;;;31873:40:0;31885:4;31873:40;;;;;;;;;;31703:229;;:::o;33907:414::-;33970:4;36233:19;;;:12;;;:19;;;;;;33987:327;;-1:-1:-1;34030:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;34213:18;;34191:19;;;:12;;;:19;;;;;;:40;;;;34246:11;;33987:327;-1:-1:-1;34297:5:0;34290:12;;47636:183;47767:44;47794:4;47800:2;47804:6;47767:26;:44::i;28449:384::-;28529:22;28537:4;28543:7;28529;:22::i;:::-;28525:301;;28661:41;28689:7;-1:-1:-1;;;;;28661:41:0;28699:2;28661:19;:41::i;:::-;28759:38;28787:4;28794:2;28759:19;:38::i;:::-;28582:230;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;28582:230:0;;;;;;;;;;-1:-1:-1;;;28568:246:0;;;;;;;:::i;31940:230::-;32015:22;32023:4;32029:7;32015;:22::i;:::-;32011:152;;;32086:5;32054:12;;;;;;;;;;;-1:-1:-1;;;;;32054:29:0;;;;;;;;;;:37;;-1:-1:-1;;32054:37:0;;;32111:40;4219:10;;32054:12;;32111:40;;32086:5;32111:40;31940:230;;:::o;34497:1553::-;34563:4;34702:19;;;:12;;;:19;;;;;;34738:15;;34734:1309;;35100:21;35124:14;35137:1;35124:10;:14;:::i;:::-;35173:18;;35100:38;;-1:-1:-1;35153:17:0;;35173:22;;35194:1;;35173:22;:::i;:::-;35153:42;;35440:17;35460:3;:11;;35472:9;35460:22;;;;;;;;:::i;:::-;;;;;;;;;35440:42;;35606:9;35577:3;:11;;35589:13;35577:26;;;;;;;;:::i;:::-;;;;;;;;;;;;:38;;;;35683:23;;;:12;;;:23;;;;;;:36;;;35844:17;;35683:3;;35844:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;35939:3;:12;;:19;35952:5;35939:19;;;;;;;;;;;35932:26;;;35982:4;35975:11;;;;;;;;34734:1309;36026:5;36019:12;;;;;36804:204;36899:18;;36871:7;;36899:26;-1:-1:-1;36891:73:0;;;;-1:-1:-1;;;36891:73:0;;8356:2:1;36891:73:0;;;8338:21:1;8395:2;8375:18;;;8368:30;8434:34;8414:18;;;8407:62;-1:-1:-1;;;8485:18:1;;;8478:32;8527:19;;36891:73:0;8154:398:1;36891:73:0;36982:3;:11;;36994:5;36982:18;;;;;;;;:::i;:::-;;;;;;;;;36975:25;;36804:204;;;;:::o;52903:1432::-;52988:7;53913:66;53899:80;;;53891:127;;;;-1:-1:-1;;;53891:127:0;;13397:2:1;53891:127:0;;;13379:21:1;13436:2;13416:18;;;13409:30;13475:34;13455:18;;;13448:62;-1:-1:-1;;;13526:18:1;;;13519:32;13568:19;;53891:127:0;13195:398:1;53891:127:0;54037:1;:7;;54042:2;54037:7;:18;;;;54048:1;:7;;54053:2;54048:7;54037:18;54029:65;;;;-1:-1:-1;;;54029:65:0;;14145:2:1;54029:65:0;;;14127:21:1;14184:2;14164:18;;;14157:30;14223:34;14203:18;;;14196:62;-1:-1:-1;;;14274:18:1;;;14267:32;14316:19;;54029:65:0;13943:398:1;54029:65:0;54209:24;;;54192:14;54209:24;;;;;;;;;7237:25:1;;;7310:4;7298:17;;7278:18;;;7271:45;;;;7332:18;;;7325:34;;;7375:18;;;7368:34;;;54209:24:0;;7209:19:1;;54209:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;54209:24:0;;-1:-1:-1;;54209:24:0;;;-1:-1:-1;;;;;;;54252:20:0;;54244:57;;;;-1:-1:-1;;;54244:57:0;;8003:2:1;54244:57:0;;;7985:21:1;8042:2;8022:18;;;8015:30;8081:26;8061:18;;;8054:54;8125:18;;54244:57:0;7801:348:1;54244:57:0;54321:6;52903:1432;-1:-1:-1;;;;;52903:1432:0:o;21310:447::-;21385:13;21411:19;21443:10;21447:6;21443:1;:10;:::i;:::-;:14;;21456:1;21443:14;:::i;:::-;21433:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21433:25:0;;21411:47;;-1:-1:-1;;;21469:6:0;21476:1;21469:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;21469:15:0;;;;;;;;;-1:-1:-1;;;21495:6:0;21502:1;21495:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;21495:15:0;;;;;;;;-1:-1:-1;21526:9:0;21538:10;21542:6;21538:1;:10;:::i;:::-;:14;;21551:1;21538:14;:::i;:::-;21526:26;;21521:131;21558:1;21554;:5;21521:131;;;-1:-1:-1;;;21602:5:0;21610:3;21602:11;21593:21;;;;;;;:::i;:::-;;;;21581:6;21588:1;21581:9;;;;;;;;:::i;:::-;;;;:33;-1:-1:-1;;;;;21581:33:0;;;;;;;;-1:-1:-1;21639:1:0;21629:11;;;;;21561:3;;;:::i;:::-;;;21521:131;;;-1:-1:-1;21670:10:0;;21662:55;;;;-1:-1:-1;;;21662:55:0;;8759:2:1;21662:55:0;;;8741:21:1;;;8778:18;;;8771:30;8837:34;8817:18;;;8810:62;8889:18;;21662:55:0;8557:356:1;14:247;73:6;126:2;114:9;105:7;101:23;97:32;94:52;;;142:1;139;132:12;94:52;181:9;168:23;200:31;225:5;200:31;:::i;266:388::-;334:6;342;395:2;383:9;374:7;370:23;366:32;363:52;;;411:1;408;401:12;363:52;450:9;437:23;469:31;494:5;469:31;:::i;:::-;519:5;-1:-1:-1;576:2:1;561:18;;548:32;589:33;548:32;589:33;:::i;:::-;641:7;631:17;;;266:388;;;;;:::o;659:456::-;736:6;744;752;805:2;793:9;784:7;780:23;776:32;773:52;;;821:1;818;811:12;773:52;860:9;847:23;879:31;904:5;879:31;:::i;:::-;929:5;-1:-1:-1;986:2:1;971:18;;958:32;999:33;958:32;999:33;:::i;:::-;659:456;;1051:7;;-1:-1:-1;;;1105:2:1;1090:18;;;;1077:32;;659:456::o;1120:315::-;1188:6;1196;1249:2;1237:9;1228:7;1224:23;1220:32;1217:52;;;1265:1;1262;1255:12;1217:52;1304:9;1291:23;1323:31;1348:5;1323:31;:::i;:::-;1373:5;1425:2;1410:18;;;;1397:32;;-1:-1:-1;;;1120:315:1:o;1440:277::-;1507:6;1560:2;1548:9;1539:7;1535:23;1531:32;1528:52;;;1576:1;1573;1566:12;1528:52;1608:9;1602:16;1661:5;1654:13;1647:21;1640:5;1637:32;1627:60;;1683:1;1680;1673:12;1722:180;1781:6;1834:2;1822:9;1813:7;1809:23;1805:32;1802:52;;;1850:1;1847;1840:12;1802:52;-1:-1:-1;1873:23:1;;1722:180;-1:-1:-1;1722:180:1:o;1907:315::-;1975:6;1983;2036:2;2024:9;2015:7;2011:23;2007:32;2004:52;;;2052:1;2049;2042:12;2004:52;2088:9;2075:23;2065:33;;2148:2;2137:9;2133:18;2120:32;2161:31;2186:5;2161:31;:::i;2227:248::-;2295:6;2303;2356:2;2344:9;2335:7;2331:23;2327:32;2324:52;;;2372:1;2369;2362:12;2324:52;-1:-1:-1;;2395:23:1;;;2465:2;2450:18;;;2437:32;;-1:-1:-1;2227:248:1:o;2480:286::-;2538:6;2591:2;2579:9;2570:7;2566:23;2562:32;2559:52;;;2607:1;2604;2597:12;2559:52;2633:23;;-1:-1:-1;;;;;;2685:32:1;;2675:43;;2665:71;;2732:1;2729;2722:12;2771:1136;2866:6;2874;2882;2890;2943:3;2931:9;2922:7;2918:23;2914:33;2911:53;;;2960:1;2957;2950:12;2911:53;3000:9;2987:23;3029:18;3070:2;3062:6;3059:14;3056:34;;;3086:1;3083;3076:12;3056:34;3124:6;3113:9;3109:22;3099:32;;3169:7;3162:4;3158:2;3154:13;3150:27;3140:55;;3191:1;3188;3181:12;3140:55;3227:2;3214:16;3249:2;3245;3242:10;3239:36;;;3255:18;;:::i;:::-;3330:2;3324:9;3298:2;3384:13;;-1:-1:-1;;3380:22:1;;;3404:2;3376:31;3372:40;3360:53;;;3428:18;;;3448:22;;;3425:46;3422:72;;;3474:18;;:::i;:::-;3514:10;3510:2;3503:22;3549:2;3541:6;3534:18;3591:7;3584:4;3579:2;3575;3571:11;3567:22;3564:35;3561:55;;;3612:1;3609;3602:12;3561:55;3672:2;3665:4;3661:2;3657:13;3650:4;3642:6;3638:17;3625:50;3719:1;3712:4;3695:15;;;3691:26;;3684:37;3695:15;3778:20;;;3765:34;;-1:-1:-1;;3846:2:1;3831:18;;3818:32;;3897:2;3882:18;3869:32;;-1:-1:-1;3699:6:1;-1:-1:-1;;;;;2771:1136:1:o;4362:184::-;4432:6;4485:2;4473:9;4464:7;4460:23;4456:32;4453:52;;;4501:1;4498;4491:12;4453:52;-1:-1:-1;4524:16:1;;4362:184;-1:-1:-1;4362:184:1:o;4936:786::-;5347:25;5342:3;5335:38;5317:3;5402:6;5396:13;5418:62;5473:6;5468:2;5463:3;5459:12;5452:4;5444:6;5440:17;5418:62;:::i;:::-;-1:-1:-1;;;5539:2:1;5499:16;;;5531:11;;;5524:40;5589:13;;5611:63;5589:13;5660:2;5652:11;;5645:4;5633:17;;5611:63;:::i;:::-;5694:17;5713:2;5690:26;;4936:786;-1:-1:-1;;;;4936:786:1:o;7413:383::-;7562:2;7551:9;7544:21;7525:4;7594:6;7588:13;7637:6;7632:2;7621:9;7617:18;7610:34;7653:66;7712:6;7707:2;7696:9;7692:18;7687:2;7679:6;7675:15;7653:66;:::i;:::-;7780:2;7759:15;-1:-1:-1;;7755:29:1;7740:45;;;;7787:2;7736:54;;7413:383;-1:-1:-1;;7413:383:1:o;15447:356::-;15649:2;15631:21;;;15668:18;;;15661:30;15727:34;15722:2;15707:18;;15700:62;15794:2;15779:18;;15447:356::o;21344:128::-;21384:3;21415:1;21411:6;21408:1;21405:13;21402:39;;;21421:18;;:::i;:::-;-1:-1:-1;21457:9:1;;21344:128::o;21477:168::-;21517:7;21583:1;21579;21575:6;21571:14;21568:1;21565:21;21560:1;21553:9;21546:17;21542:45;21539:71;;;21590:18;;:::i;:::-;-1:-1:-1;21630:9:1;;21477:168::o;21650:125::-;21690:4;21718:1;21715;21712:8;21709:34;;;21723:18;;:::i;:::-;-1:-1:-1;21760:9:1;;21650:125::o;21780:258::-;21852:1;21862:113;21876:6;21873:1;21870:13;21862:113;;;21952:11;;;21946:18;21933:11;;;21926:39;21898:2;21891:10;21862:113;;;21993:6;21990:1;21987:13;21984:48;;;22028:1;22019:6;22014:3;22010:16;22003:27;21984:48;;21780:258;;;:::o;22043:136::-;22082:3;22110:5;22100:39;;22119:18;;:::i;:::-;-1:-1:-1;;;22155:18:1;;22043:136::o;22184:380::-;22263:1;22259:12;;;;22306;;;22327:61;;22381:4;22373:6;22369:17;22359:27;;22327:61;22434:2;22426:6;22423:14;22403:18;22400:38;22397:161;;;22480:10;22475:3;22471:20;22468:1;22461:31;22515:4;22512:1;22505:15;22543:4;22540:1;22533:15;22397:161;;22184:380;;;:::o;22569:127::-;22630:10;22625:3;22621:20;22618:1;22611:31;22661:4;22658:1;22651:15;22685:4;22682:1;22675:15;22701:127;22762:10;22757:3;22753:20;22750:1;22743:31;22793:4;22790:1;22783:15;22817:4;22814:1;22807:15;22833:127;22894:10;22889:3;22885:20;22882:1;22875:31;22925:4;22922:1;22915:15;22949:4;22946:1;22939:15;22965:127;23026:10;23021:3;23017:20;23014:1;23007:31;23057:4;23054:1;23047:15;23081:4;23078:1;23071:15;23097:131;-1:-1:-1;;;;;23172:31:1;;23162:42;;23152:70;;23218:1;23215;23208:12

Swarm Source

ipfs://53cb0e5c91f7638a90f01908bccf9f79d297924bd49779c3a34afad80c4ebc0b
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.