CRO Price: $0.09 (-0.96%)

Token

Mad Meerkat Optimizer (MMO)

Overview

Max Total Supply

4,820,128.939722429107045519 MMO

Holders

10,341 (0.00%)

Market

Price

$0.0127 @ 0.146176 CRO (+0.58%)

Onchain Market Cap

$61,072.82

Circulating Supply Market Cap

$60,810.00

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
berebel.cro
Balance
4.317526388008194616 MMO

Value
$0.05 ( ~0.576841307750414 CRO) [0.0001%]
0x11d205f4f1301d28ba3195911aa7a80938df41b2
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

MMFinance is the 2nd Generation & the 1st AMM & DEX on Cronos Chain that offers fee rebates via trade mining and protocol owned liquidity.

Contract Source Code Verified (Exact Match)

Contract Name:
MMOToken

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at cronoscan.com on 2022-03-30
*/

// SPDX-License-Identifier: MIT
pragma solidity 0.6.12;

contract Context {
    // Empty internal constructor, to prevent people from mistakenly deploying
    // an instance of this contract, which should be used via inheritance.
    constructor() internal {}

    function _msgSender() internal view returns (address payable) {
        return msg.sender;
    }

    function _msgData() internal view returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}
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() internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(_owner == _msgSender(), 'Ownable: caller is not the owner');
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public 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 onlyOwner {
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     */
    function _transferOwnership(address newOwner) internal {
        require(newOwner != address(0), 'Ownable: new owner is the zero address');
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}
interface IBEP20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    function preMineSupply() external view returns (uint256);

    /**
     * @dev Returns the token decimals.
     */
    function decimals() external view returns (uint8);

    /**
     * @dev Returns the token symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the token name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the bep token owner.
     */
    function getOwner() external view returns (address);

    /**
     * @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);
}
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, 'SafeMath: addition overflow');

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, 'SafeMath: subtraction overflow');
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, 'SafeMath: multiplication overflow');

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, 'SafeMath: division by zero');
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, 'SafeMath: modulo by zero');
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }

    function min(uint256 x, uint256 y) internal pure returns (uint256 z) {
        z = x < y ? x : y;
    }

    // babylonian method (https://en.wikipedia.org/wiki/Methods_of_computing_square_roots#Babylonian_method)
    function sqrt(uint256 y) internal pure returns (uint256 z) {
        if (y > 3) {
            z = y;
            uint256 x = y / 2 + 1;
            while (x < z) {
                z = x;
                x = (y / x + x) / 2;
            }
        } else if (y != 0) {
            z = 1;
        }
    }
}
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly {
            codehash := extcodehash(account)
        }
        return (codehash != accountHash && codehash != 0x0);
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, 'Address: insufficient balance');

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{value: amount}('');
        require(success, 'Address: unable to send value, recipient may have reverted');
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, 'Address: low-level call failed');
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return _functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, 'Address: low-level call with value failed');
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, 'Address: insufficient balance for call');
        return _functionCallWithValue(target, data, value, errorMessage);
    }

    function _functionCallWithValue(
        address target,
        bytes memory data,
        uint256 weiValue,
        string memory errorMessage
    ) private returns (bytes memory) {
        require(isContract(target), 'Address: call to non-contract');

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{value: weiValue}(data);
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

contract BEP20 is Context, IBEP20, Ownable {
    uint256 private constant _preMineSupply = 625000 * 1e18;

    using SafeMath for uint256;
    using Address for address;

    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name, string memory symbol) public {
        _name = name;
        _symbol = symbol;
        _decimals = 18;

        _mint(msg.sender, _preMineSupply);
    }

    /**
     * @dev Returns the bep token owner.
     */
    function getOwner() external override view returns (address) {
        return owner();
    }

    /**
     * @dev Returns the token name.
     */
    function name() public override view returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the token decimals.
     */
    function decimals() public override view returns (uint8) {
        return _decimals;
    }

    /**
     * @dev Returns the token symbol.
     */
    function symbol() public override view returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {BEP20-totalSupply}.
     */
    function totalSupply() public override view returns (uint256) {
        return _totalSupply;
    }

    function preMineSupply() public override view returns (uint256) {
        return _preMineSupply;
    }

    /**
     * @dev See {BEP20-balanceOf}.
     */
    function balanceOf(address account) public override view returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {BEP20-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 override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {BEP20-allowance}.
     */
    function allowance(address owner, address spender) public override view returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {BEP20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {BEP20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {BEP20};
     *
     * 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 override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(
            sender,
            _msgSender(),
            _allowances[sender][_msgSender()].sub(amount, 'BEP20: transfer amount exceeds allowance')
        );
        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 {BEP20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(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 {BEP20-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 returns (bool) {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender].sub(subtractedValue, 'BEP20: decreased allowance below zero')
        );
        return true;
    }

    /**
     * @dev Creates `amount` tokens and assigns them to `msg.sender`, increasing
     * the total supply.
     *
     * Requirements
     *
     * - `msg.sender` must be the token owner
     */
    function mint(uint256 amount) public onlyOwner returns (bool) {
        _mint(_msgSender(), amount);
        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 {
        require(sender != address(0), 'BEP20: transfer from the zero address');
        require(recipient != address(0), 'BEP20: transfer to the zero address');

        _balances[sender] = _balances[sender].sub(amount, 'BEP20: transfer amount exceeds balance');
        _balances[recipient] = _balances[recipient].add(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 returns(bool) {
        require(account != address(0), 'BEP20: mint to the zero address');

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(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 {
        require(account != address(0), 'BEP20: burn from the zero address');

        _balances[account] = _balances[account].sub(amount, 'BEP20: burn amount exceeds balance');
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
     *
     * This is 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 {
        require(owner != address(0), 'BEP20: approve from the zero address');
        require(spender != address(0), 'BEP20: approve to the zero address');

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`.`amount` is then deducted
     * from the caller's allowance.
     *
     * See {_burn} and {_approve}.
     */
    function _burnFrom(address account, uint256 amount) internal {
        _burn(account, amount);
        _approve(
            account,
            _msgSender(),
            _allowances[account][_msgSender()].sub(amount, 'BEP20: burn amount exceeds allowance')
        );
    }
}

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] = toDeleteIndex + 1; // All indexes are 1-based

            // 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];
    }

    // 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(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(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(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(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));
    }
}
// MMO token with Governance.
contract MMOToken is BEP20('Mad Meerkat Optimizer', 'MMO') {
    using EnumerableSet for EnumerableSet.AddressSet;
    EnumerableSet.AddressSet private _minters;

    /// @notice Creates `_amount` token to `_to`.
    function mint(address _to, uint256 _amount) public onlyMinter returns(bool) {
        _mint(_to, _amount);
        _moveDelegates(address(0), _delegates[_to], _amount);
        return true;
    }

    /// @notice A record of each accounts delegate
    mapping (address => address) internal _delegates;

    /// @notice A checkpoint for marking number of votes from a given block
    struct Checkpoint {
        uint32 fromBlock;
        uint256 votes;
    }

    /// @notice A record of votes checkpoints for each account, by index
    mapping (address => mapping (uint32 => Checkpoint)) public checkpoints;

    /// @notice The number of checkpoints for each account
    mapping (address => uint32) public numCheckpoints;

    /// @notice The EIP-712 typehash for the contract's domain
    bytes32 public constant DOMAIN_TYPEHASH = keccak256("EIP712Domain(string name,uint256 chainId,address verifyingContract)");

    /// @notice The EIP-712 typehash for the delegation struct used by the contract
    bytes32 public constant DELEGATION_TYPEHASH = keccak256("Delegation(address delegatee,uint256 nonce,uint256 expiry)");

    /// @notice A record of states for signing / validating signatures
    mapping (address => uint) public nonces;

      /// @notice An event thats emitted when an account changes its delegate
    event DelegateChanged(address indexed delegator, address indexed fromDelegate, address indexed toDelegate);

    /// @notice An event thats emitted when a delegate account's vote balance changes
    event DelegateVotesChanged(address indexed delegate, uint previousBalance, uint newBalance);

    /**
     * @notice Delegate votes from `msg.sender` to `delegatee`
     * @param delegator The address to get delegatee for
     */
    function delegates(address delegator)
        external
        view
        returns (address)
    {
        return _delegates[delegator];
    }

   /**
    * @notice Delegate votes from `msg.sender` to `delegatee`
    * @param delegatee The address to delegate votes to
    */
    function delegate(address delegatee) external {
        return _delegate(msg.sender, delegatee);
    }

    /**
     * @notice Delegates votes from signatory to `delegatee`
     * @param delegatee The address to delegate votes to
     * @param nonce The contract state required to match the signature
     * @param expiry The time at which to expire the signature
     * @param v The recovery byte of the signature
     * @param r Half of the ECDSA signature pair
     * @param s Half of the ECDSA signature pair
     */
    function delegateBySig(
        address delegatee,
        uint nonce,
        uint expiry,
        uint8 v,
        bytes32 r,
        bytes32 s
    )
        external
    {
        bytes32 domainSeparator = keccak256(
            abi.encode(
                DOMAIN_TYPEHASH,
                keccak256(bytes(name())),
                getChainId(),
                address(this)
            )
        );

        bytes32 structHash = keccak256(
            abi.encode(
                DELEGATION_TYPEHASH,
                delegatee,
                nonce,
                expiry
            )
        );

        bytes32 digest = keccak256(
            abi.encodePacked(
                "\x19\x01",
                domainSeparator,
                structHash
            )
        );

        address signatory = ecrecover(digest, v, r, s);
        require(signatory != address(0), "MMO::delegateBySig: invalid signature");
        require(nonce == nonces[signatory]++, "MMO::delegateBySig: invalid nonce");
        require(now <= expiry, "MMO::delegateBySig: signature expired");
        return _delegate(signatory, delegatee);
    }

    /**
     * @notice Gets the current votes balance for `account`
     * @param account The address to get votes balance
     * @return The number of current votes for `account`
     */
    function getCurrentVotes(address account)
        external
        view
        returns (uint256)
    {
        uint32 nCheckpoints = numCheckpoints[account];
        return nCheckpoints > 0 ? checkpoints[account][nCheckpoints - 1].votes : 0;
    }

    /**
     * @notice Determine the prior number of votes for an account as of a block number
     * @dev Block number must be a finalized block or else this function will revert to prevent misinformation.
     * @param account The address of the account to check
     * @param blockNumber The block number to get the vote balance at
     * @return The number of votes the account had as of the given block
     */
    function getPriorVotes(address account, uint blockNumber)
        external
        view
        returns (uint256)
    {
        require(blockNumber < block.number, "MMO::getPriorVotes: not yet determined");

        uint32 nCheckpoints = numCheckpoints[account];
        if (nCheckpoints == 0) {
            return 0;
        }

        // First check most recent balance
        if (checkpoints[account][nCheckpoints - 1].fromBlock <= blockNumber) {
            return checkpoints[account][nCheckpoints - 1].votes;
        }

        // Next check implicit zero balance
        if (checkpoints[account][0].fromBlock > blockNumber) {
            return 0;
        }

        uint32 lower = 0;
        uint32 upper = nCheckpoints - 1;
        while (upper > lower) {
            uint32 center = upper - (upper - lower) / 2; // ceil, avoiding overflow
            Checkpoint memory cp = checkpoints[account][center];
            if (cp.fromBlock == blockNumber) {
                return cp.votes;
            } else if (cp.fromBlock < blockNumber) {
                lower = center;
            } else {
                upper = center - 1;
            }
        }
        return checkpoints[account][lower].votes;
    }

    function _delegate(address delegator, address delegatee)
        internal
    {
        address currentDelegate = _delegates[delegator];
        uint256 delegatorBalance = balanceOf(delegator); // balance of underlying MMOs (not scaled);
        _delegates[delegator] = delegatee;

        emit DelegateChanged(delegator, currentDelegate, delegatee);

        _moveDelegates(currentDelegate, delegatee, delegatorBalance);
    }

    function _moveDelegates(address srcRep, address dstRep, uint256 amount) internal {
        if (srcRep != dstRep && amount > 0) {
            if (srcRep != address(0)) {
                // decrease old representative
                uint32 srcRepNum = numCheckpoints[srcRep];
                uint256 srcRepOld = srcRepNum > 0 ? checkpoints[srcRep][srcRepNum - 1].votes : 0;
                uint256 srcRepNew = srcRepOld.sub(amount);
                _writeCheckpoint(srcRep, srcRepNum, srcRepOld, srcRepNew);
            }

            if (dstRep != address(0)) {
                // increase new representative
                uint32 dstRepNum = numCheckpoints[dstRep];
                uint256 dstRepOld = dstRepNum > 0 ? checkpoints[dstRep][dstRepNum - 1].votes : 0;
                uint256 dstRepNew = dstRepOld.add(amount);
                _writeCheckpoint(dstRep, dstRepNum, dstRepOld, dstRepNew);
            }
        }
    }

    function _writeCheckpoint(
        address delegatee,
        uint32 nCheckpoints,
        uint256 oldVotes,
        uint256 newVotes
    )
        internal
    {
        uint32 blockNumber = safe32(block.number, "MMO::_writeCheckpoint: block number exceeds 32 bits");

        if (nCheckpoints > 0 && checkpoints[delegatee][nCheckpoints - 1].fromBlock == blockNumber) {
            checkpoints[delegatee][nCheckpoints - 1].votes = newVotes;
        } else {
            checkpoints[delegatee][nCheckpoints] = Checkpoint(blockNumber, newVotes);
            numCheckpoints[delegatee] = nCheckpoints + 1;
        }

        emit DelegateVotesChanged(delegatee, oldVotes, newVotes);
    }

    function safe32(uint n, string memory errorMessage) internal pure returns (uint32) {
        require(n < 2**32, errorMessage);
        return uint32(n);
    }

    function getChainId() internal pure returns (uint) {
        uint256 chainId;
        assembly { chainId := chainid() }
        return chainId;
    }

    function addMinter(address _addMinter) public onlyOwner returns (bool) {
        require(_addMinter != address(0), "MMO: _addMinter is the zero address");
        return EnumerableSet.add(_minters, _addMinter);
    }

    function delMinter(address _delMinter) public onlyOwner returns (bool) {
        require(_delMinter != address(0), "MMO: _delMinter is the zero address");
        return EnumerableSet.remove(_minters, _delMinter);
    }

    function getMinterLength() public view returns (uint256) {
        return EnumerableSet.length(_minters);
    }

    function isMinter(address account) public view returns (bool) {
        return EnumerableSet.contains(_minters, account);
    }

    function getMinter(uint256 _index) public view onlyOwner returns (address){
        require(_index <= getMinterLength() - 1, "MMO: index out of bounds");
        return EnumerableSet.at(_minters, _index);
    }

    // modifier for mint function
    modifier onlyMinter() {
        require(isMinter(msg.sender), "caller is not the minter");
        _;
    }
}

Contract Security Audit

Contract ABI

[{"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":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"fromDelegate","type":"address"},{"indexed":true,"internalType":"address","name":"toDelegate","type":"address"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBalance","type":"uint256"}],"name":"DelegateVotesChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DELEGATION_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addMinter","type":"address"}],"name":"addMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint32","name":"","type":"uint32"}],"name":"checkpoints","outputs":[{"internalType":"uint32","name":"fromBlock","type":"uint32"},{"internalType":"uint256","name":"votes","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_delMinter","type":"address"}],"name":"delMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"}],"name":"delegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"delegateBySig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegator","type":"address"}],"name":"delegates","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getCurrentVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_index","type":"uint256"}],"name":"getMinter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMinterLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPriorVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"account","type":"address"}],"name":"isMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numCheckpoints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preMineSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280601581526020017f4d6164204d6565726b6174204f7074696d697a65720000000000000000000000815250604051806040016040528060038152602001624d4d4f60e81b8152506000620000766200011860201b60201c565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3508151620000d590600490602085019062000287565b508051620000eb90600590602084019062000287565b506006805460ff191660121790556200010f336984595161401484a000006200011c565b50505062000323565b3390565b60006001600160a01b0383166200017a576040805162461bcd60e51b815260206004820152601f60248201527f42455032303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b62000196826003546200022560201b620013b21790919060201c565b6003556001600160a01b038316600090815260016020908152604090912054620001cb918490620013b262000225821b17901c565b6001600160a01b03841660008181526001602090815260408083209490945583518681529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a392915050565b60008282018381101562000280576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620002ca57805160ff1916838001178555620002fa565b82800160010185558215620002fa579182015b82811115620002fa578251825591602001919060010190620002dd565b50620003089291506200030c565b5090565b5b808211156200030857600081556001016200030d565b6120f580620003336000396000f3fe608060405234801561001057600080fd5b50600436106101fb5760003560e01c8063715018a61161011a578063a457c2d7116100ad578063c3cda5201161007c578063c3cda52014610606578063dd62ed3e1461064d578063e7a324dc1461067b578063f1127ed814610683578063f2fde38b146106d5576101fb565b8063a457c2d714610562578063a9059cbb1461058e578063aa271e1a146105ba578063b4b5ea57146105e0576101fb565b80638da5cb5b116100e95780638da5cb5b1461050f57806395d89b4114610517578063983b2d561461051f578063a0712d6814610545576101fb565b8063715018a6146104ad578063782d6fe1146104b55780637ecebe00146104e1578063893d20e814610507576101fb565b8063313ce567116101925780635b7121f8116101615780635b7121f8146104035780635c19a95c146104205780636fcfff451461044857806370a0823114610487576101fb565b8063313ce5671461034b578063395093511461036957806340c10f1914610395578063587cde1e146103c1576101fb565b806318160ddd116101ce57806318160ddd146102df57806320606b70146102e757806323338b88146102ef57806323b872dd14610315576101fb565b80630323aac71461020057806306fdde031461021a578063095ea7b3146102975780630c16ea83146102d7575b600080fd5b6102086106fb565b60408051918252519081900360200190f35b61022261070c565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561025c578181015183820152602001610244565b50505050905090810190601f1680156102895780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102c3600480360360408110156102ad57600080fd5b506001600160a01b0381351690602001356107a2565b604080519115158252519081900360200190f35b6102086107c0565b6102086107ce565b6102086107d4565b6102c36004803603602081101561030557600080fd5b50356001600160a01b03166107f8565b6102c36004803603606081101561032b57600080fd5b506001600160a01b038135811691602081013590911690604001356108a2565b610353610929565b6040805160ff9092168252519081900360200190f35b6102c36004803603604081101561037f57600080fd5b506001600160a01b038135169060200135610932565b6102c3600480360360408110156103ab57600080fd5b506001600160a01b038135169060200135610980565b6103e7600480360360208110156103d757600080fd5b50356001600160a01b0316610a0c565b604080516001600160a01b039092168252519081900360200190f35b6103e76004803603602081101561041957600080fd5b5035610a2a565b6104466004803603602081101561043657600080fd5b50356001600160a01b0316610aee565b005b61046e6004803603602081101561045e57600080fd5b50356001600160a01b0316610afb565b6040805163ffffffff9092168252519081900360200190f35b6102086004803603602081101561049d57600080fd5b50356001600160a01b0316610b13565b610446610b2e565b610208600480360360408110156104cb57600080fd5b506001600160a01b038135169060200135610bd0565b610208600480360360208110156104f757600080fd5b50356001600160a01b0316610dd8565b6103e7610dea565b6103e7610df0565b610222610dff565b6102c36004803603602081101561053557600080fd5b50356001600160a01b0316610e60565b6102c36004803603602081101561055b57600080fd5b5035610f0a565b6102c36004803603604081101561057857600080fd5b506001600160a01b038135169060200135610f75565b6102c3600480360360408110156105a457600080fd5b506001600160a01b038135169060200135610fdd565b6102c3600480360360208110156105d057600080fd5b50356001600160a01b0316610ff1565b610208600480360360208110156105f657600080fd5b50356001600160a01b0316610ffe565b610446600480360360c081101561061c57600080fd5b506001600160a01b038135169060208101359060408101359060ff6060820135169060808101359060a00135611062565b6102086004803603604081101561066357600080fd5b506001600160a01b03813581169160200135166112d5565b610208611300565b6106b56004803603604081101561069957600080fd5b5080356001600160a01b0316906020013563ffffffff16611324565b6040805163ffffffff909316835260208301919091528051918290030190f35b610446600480360360208110156106eb57600080fd5b50356001600160a01b0316611351565b6000610707600761140c565b905090565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107985780601f1061076d57610100808354040283529160200191610798565b820191906000526020600020905b81548152906001019060200180831161077b57829003601f168201915b5050505050905090565b60006107b66107af611417565b848461141b565b5060015b92915050565b6984595161401484a0000090565b60035490565b7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b6000610802611417565b6000546001600160a01b03908116911614610852576040805162461bcd60e51b81526020600482018190526024820152600080516020611f95833981519152604482015290519081900360640190fd5b6001600160a01b0382166108975760405162461bcd60e51b8152600401808060200182810382526023815260200180611ffe6023913960400191505060405180910390fd5b6107ba600783611507565b60006108af84848461151c565b61091f846108bb611417565b61091a85604051806060016040528060288152602001611f47602891396001600160a01b038a166000908152600260205260408120906108f9611417565b6001600160a01b03168152602081019190915260400160002054919061166e565b61141b565b5060019392505050565b60065460ff1690565b60006107b661093f611417565b8461091a8560026000610950611417565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906113b2565b600061098b33610ff1565b6109dc576040805162461bcd60e51b815260206004820152601860248201527f63616c6c6572206973206e6f7420746865206d696e7465720000000000000000604482015290519081900360640190fd5b6109e68383611705565b506001600160a01b038084166000908152600960205260408120546107b69216846117ef565b6001600160a01b039081166000908152600960205260409020541690565b6000610a34611417565b6000546001600160a01b03908116911614610a84576040805162461bcd60e51b81526020600482018190526024820152600080516020611f95833981519152604482015290519081900360640190fd5b6001610a8e6106fb565b03821115610ae3576040805162461bcd60e51b815260206004820152601860248201527f4d4d4f3a20696e646578206f7574206f6620626f756e64730000000000000000604482015290519081900360640190fd5b6107ba600783611931565b610af8338261193d565b50565b600b6020526000908152604090205463ffffffff1681565b6001600160a01b031660009081526001602052604090205490565b610b36611417565b6000546001600160a01b03908116911614610b86576040805162461bcd60e51b81526020600482018190526024820152600080516020611f95833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000438210610c105760405162461bcd60e51b8152600401808060200182810382526026815260200180611f6f6026913960400191505060405180910390fd5b6001600160a01b0383166000908152600b602052604090205463ffffffff1680610c3e5760009150506107ba565b6001600160a01b0384166000908152600a6020908152604080832063ffffffff600019860181168552925290912054168310610cad576001600160a01b0384166000908152600a602090815260408083206000199490940163ffffffff168352929052206001015490506107ba565b6001600160a01b0384166000908152600a6020908152604080832083805290915290205463ffffffff16831015610ce85760009150506107ba565b600060001982015b8163ffffffff168163ffffffff161115610da157600282820363ffffffff16048103610d1a611e35565b506001600160a01b0387166000908152600a6020908152604080832063ffffffff808616855290835292819020815180830190925280549093168082526001909301549181019190915290871415610d7c576020015194506107ba9350505050565b805163ffffffff16871115610d9357819350610d9a565b6001820392505b5050610cf0565b506001600160a01b0385166000908152600a6020908152604080832063ffffffff9094168352929052206001015491505092915050565b600c6020526000908152604090205481565b60006107075b6000546001600160a01b031690565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107985780601f1061076d57610100808354040283529160200191610798565b6000610e6a611417565b6000546001600160a01b03908116911614610eba576040805162461bcd60e51b81526020600482018190526024820152600080516020611f95833981519152604482015290519081900360640190fd5b6001600160a01b038216610eff5760405162461bcd60e51b8152600401808060200182810382526023815260200180611eff6023913960400191505060405180910390fd5b6107ba6007836119d2565b6000610f14611417565b6000546001600160a01b03908116911614610f64576040805162461bcd60e51b81526020600482018190526024820152600080516020611f95833981519152604482015290519081900360640190fd5b6107b6610f6f611417565b83611705565b60006107b6610f82611417565b8461091a856040518060600160405280602581526020016120216025913960026000610fac611417565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919061166e565b60006107b6610fea611417565b848461151c565b60006107ba6007836119e7565b6001600160a01b0381166000908152600b602052604081205463ffffffff168061102957600061105b565b6001600160a01b0383166000908152600a6020908152604080832063ffffffff60001986011684529091529020600101545b9392505050565b60007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86661108d61070c565b8051906020012061109c6119fc565b60408051602080820195909552808201939093526060830191909152306080808401919091528151808403909101815260a0830182528051908401207fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf60c08401526001600160a01b038b1660e084015261010083018a90526101208084018a9052825180850390910181526101408401835280519085012061190160f01b6101608501526101628401829052610182808501829052835180860390910181526101a285018085528151918701919091206000918290526101c2860180865281905260ff8b166101e287015261020286018a90526102228601899052935192965090949293909260019261024280840193601f198301929081900390910190855afa1580156111cf573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166112215760405162461bcd60e51b81526004018080602001828103825260258152602001806120796025913960400191505060405180910390fd5b6001600160a01b0381166000908152600c60205260409020805460018101909155891461127f5760405162461bcd60e51b8152600401808060200182810382526021815260200180611ede6021913960400191505060405180910390fd5b874211156112be5760405162461bcd60e51b8152600401808060200182810382526025815260200180611f226025913960400191505060405180910390fd5b6112c8818b61193d565b505050505b505050505050565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b600a6020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b611359611417565b6000546001600160a01b039081169116146113a9576040805162461bcd60e51b81526020600482018190526024820152600080516020611f95833981519152604482015290519081900360640190fd5b610af881611a00565b60008282018381101561105b576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60006107ba82611aa0565b3390565b6001600160a01b0383166114605760405162461bcd60e51b8152600401808060200182810382526024815260200180611e946024913960400191505060405180910390fd5b6001600160a01b0382166114a55760405162461bcd60e51b815260040180806020018281038252602281526020018061209e6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600061105b836001600160a01b038416611aa4565b6001600160a01b0383166115615760405162461bcd60e51b8152600401808060200182810382526025815260200180611e6f6025913960400191505060405180910390fd5b6001600160a01b0382166115a65760405162461bcd60e51b8152600401808060200182810382526023815260200180611fdb6023913960400191505060405180910390fd5b6115e381604051806060016040528060268152602001611fb5602691396001600160a01b038616600090815260016020526040902054919061166e565b6001600160a01b03808516600090815260016020526040808220939093559084168152205461161290826113b2565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156116fd5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156116c25781810151838201526020016116aa565b50505050905090810190601f1680156116ef5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60006001600160a01b038316611762576040805162461bcd60e51b815260206004820152601f60248201527f42455032303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b60035461176f90836113b2565b6003556001600160a01b03831660009081526001602052604090205461179590836113b2565b6001600160a01b03841660008181526001602090815260408083209490945583518681529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a392915050565b816001600160a01b0316836001600160a01b0316141580156118115750600081115b1561192c576001600160a01b038316156118a3576001600160a01b0383166000908152600b602052604081205463ffffffff169081611851576000611883565b6001600160a01b0385166000908152600a6020908152604080832063ffffffff60001987011684529091529020600101545b905060006118918285611b6a565b905061189f86848484611bac565b5050505b6001600160a01b0382161561192c576001600160a01b0382166000908152600b602052604081205463ffffffff1690816118de576000611910565b6001600160a01b0384166000908152600a6020908152604080832063ffffffff60001987011684529091529020600101545b9050600061191e82856113b2565b90506112cd85848484611bac565b505050565b600061105b8383611d11565b6001600160a01b038083166000908152600960205260408120549091169061196484610b13565b6001600160a01b0385811660008181526009602052604080822080546001600160a01b031916898616908117909155905194955093928616927f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a46119cc8284836117ef565b50505050565b600061105b836001600160a01b038416611d75565b600061105b836001600160a01b038416611dbf565b4690565b6001600160a01b038116611a455760405162461bcd60e51b8152600401808060200182810382526026815260200180611eb86026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b5490565b60008181526001830160205260408120548015611b605783546000198083019190810190600090879083908110611ad757fe5b9060005260206000200154905080876000018481548110611af457fe5b600091825260208083209091019290925582815260018981019092526040902090840190558654879080611b2457fe5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506107ba565b60009150506107ba565b600061105b83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061166e565b6000611bd04360405180606001604052806033815260200161204660339139611dd7565b905060008463ffffffff16118015611c1957506001600160a01b0385166000908152600a6020908152604080832063ffffffff6000198901811685529252909120548282169116145b15611c56576001600160a01b0385166000908152600a6020908152604080832063ffffffff60001989011684529091529020600101829055611cc7565b60408051808201825263ffffffff808416825260208083018681526001600160a01b038a166000818152600a84528681208b8616825284528681209551865490861663ffffffff199182161787559251600196870155908152600b9092529390208054928801909116919092161790555b604080518481526020810184905281516001600160a01b038816927fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724928290030190a25050505050565b81546000908210611d535760405162461bcd60e51b8152600401808060200182810382526022815260200180611e4d6022913960400191505060405180910390fd5b826000018281548110611d6257fe5b9060005260206000200154905092915050565b6000611d818383611dbf565b611db7575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556107ba565b5060006107ba565b60009081526001919091016020526040902054151590565b6000816401000000008410611e2d5760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156116c25781810151838201526020016116aa565b509192915050565b60408051808201909152600080825260208201529056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e647342455032303a207472616e736665722066726f6d20746865207a65726f206164647265737342455032303a20617070726f76652066726f6d20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734d4d4f3a3a64656c656761746542795369673a20696e76616c6964206e6f6e63654d4d4f3a205f6164644d696e74657220697320746865207a65726f20616464726573734d4d4f3a3a64656c656761746542795369673a207369676e6174757265206578706972656442455032303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654d4d4f3a3a6765745072696f72566f7465733a206e6f74207965742064657465726d696e65644f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657242455032303a207472616e7366657220616d6f756e7420657863656564732062616c616e636542455032303a207472616e7366657220746f20746865207a65726f20616464726573734d4d4f3a205f64656c4d696e74657220697320746865207a65726f206164647265737342455032303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f4d4d4f3a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d626572206578636565647320333220626974734d4d4f3a3a64656c656761746542795369673a20696e76616c6964207369676e617475726542455032303a20617070726f766520746f20746865207a65726f2061646472657373a2646970667358221220f58634fa9990a66be94c01d708af3c515c14315ba74eca2df7df29b88c326bea64736f6c634300060c0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101fb5760003560e01c8063715018a61161011a578063a457c2d7116100ad578063c3cda5201161007c578063c3cda52014610606578063dd62ed3e1461064d578063e7a324dc1461067b578063f1127ed814610683578063f2fde38b146106d5576101fb565b8063a457c2d714610562578063a9059cbb1461058e578063aa271e1a146105ba578063b4b5ea57146105e0576101fb565b80638da5cb5b116100e95780638da5cb5b1461050f57806395d89b4114610517578063983b2d561461051f578063a0712d6814610545576101fb565b8063715018a6146104ad578063782d6fe1146104b55780637ecebe00146104e1578063893d20e814610507576101fb565b8063313ce567116101925780635b7121f8116101615780635b7121f8146104035780635c19a95c146104205780636fcfff451461044857806370a0823114610487576101fb565b8063313ce5671461034b578063395093511461036957806340c10f1914610395578063587cde1e146103c1576101fb565b806318160ddd116101ce57806318160ddd146102df57806320606b70146102e757806323338b88146102ef57806323b872dd14610315576101fb565b80630323aac71461020057806306fdde031461021a578063095ea7b3146102975780630c16ea83146102d7575b600080fd5b6102086106fb565b60408051918252519081900360200190f35b61022261070c565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561025c578181015183820152602001610244565b50505050905090810190601f1680156102895780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102c3600480360360408110156102ad57600080fd5b506001600160a01b0381351690602001356107a2565b604080519115158252519081900360200190f35b6102086107c0565b6102086107ce565b6102086107d4565b6102c36004803603602081101561030557600080fd5b50356001600160a01b03166107f8565b6102c36004803603606081101561032b57600080fd5b506001600160a01b038135811691602081013590911690604001356108a2565b610353610929565b6040805160ff9092168252519081900360200190f35b6102c36004803603604081101561037f57600080fd5b506001600160a01b038135169060200135610932565b6102c3600480360360408110156103ab57600080fd5b506001600160a01b038135169060200135610980565b6103e7600480360360208110156103d757600080fd5b50356001600160a01b0316610a0c565b604080516001600160a01b039092168252519081900360200190f35b6103e76004803603602081101561041957600080fd5b5035610a2a565b6104466004803603602081101561043657600080fd5b50356001600160a01b0316610aee565b005b61046e6004803603602081101561045e57600080fd5b50356001600160a01b0316610afb565b6040805163ffffffff9092168252519081900360200190f35b6102086004803603602081101561049d57600080fd5b50356001600160a01b0316610b13565b610446610b2e565b610208600480360360408110156104cb57600080fd5b506001600160a01b038135169060200135610bd0565b610208600480360360208110156104f757600080fd5b50356001600160a01b0316610dd8565b6103e7610dea565b6103e7610df0565b610222610dff565b6102c36004803603602081101561053557600080fd5b50356001600160a01b0316610e60565b6102c36004803603602081101561055b57600080fd5b5035610f0a565b6102c36004803603604081101561057857600080fd5b506001600160a01b038135169060200135610f75565b6102c3600480360360408110156105a457600080fd5b506001600160a01b038135169060200135610fdd565b6102c3600480360360208110156105d057600080fd5b50356001600160a01b0316610ff1565b610208600480360360208110156105f657600080fd5b50356001600160a01b0316610ffe565b610446600480360360c081101561061c57600080fd5b506001600160a01b038135169060208101359060408101359060ff6060820135169060808101359060a00135611062565b6102086004803603604081101561066357600080fd5b506001600160a01b03813581169160200135166112d5565b610208611300565b6106b56004803603604081101561069957600080fd5b5080356001600160a01b0316906020013563ffffffff16611324565b6040805163ffffffff909316835260208301919091528051918290030190f35b610446600480360360208110156106eb57600080fd5b50356001600160a01b0316611351565b6000610707600761140c565b905090565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107985780601f1061076d57610100808354040283529160200191610798565b820191906000526020600020905b81548152906001019060200180831161077b57829003601f168201915b5050505050905090565b60006107b66107af611417565b848461141b565b5060015b92915050565b6984595161401484a0000090565b60035490565b7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b6000610802611417565b6000546001600160a01b03908116911614610852576040805162461bcd60e51b81526020600482018190526024820152600080516020611f95833981519152604482015290519081900360640190fd5b6001600160a01b0382166108975760405162461bcd60e51b8152600401808060200182810382526023815260200180611ffe6023913960400191505060405180910390fd5b6107ba600783611507565b60006108af84848461151c565b61091f846108bb611417565b61091a85604051806060016040528060288152602001611f47602891396001600160a01b038a166000908152600260205260408120906108f9611417565b6001600160a01b03168152602081019190915260400160002054919061166e565b61141b565b5060019392505050565b60065460ff1690565b60006107b661093f611417565b8461091a8560026000610950611417565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906113b2565b600061098b33610ff1565b6109dc576040805162461bcd60e51b815260206004820152601860248201527f63616c6c6572206973206e6f7420746865206d696e7465720000000000000000604482015290519081900360640190fd5b6109e68383611705565b506001600160a01b038084166000908152600960205260408120546107b69216846117ef565b6001600160a01b039081166000908152600960205260409020541690565b6000610a34611417565b6000546001600160a01b03908116911614610a84576040805162461bcd60e51b81526020600482018190526024820152600080516020611f95833981519152604482015290519081900360640190fd5b6001610a8e6106fb565b03821115610ae3576040805162461bcd60e51b815260206004820152601860248201527f4d4d4f3a20696e646578206f7574206f6620626f756e64730000000000000000604482015290519081900360640190fd5b6107ba600783611931565b610af8338261193d565b50565b600b6020526000908152604090205463ffffffff1681565b6001600160a01b031660009081526001602052604090205490565b610b36611417565b6000546001600160a01b03908116911614610b86576040805162461bcd60e51b81526020600482018190526024820152600080516020611f95833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000438210610c105760405162461bcd60e51b8152600401808060200182810382526026815260200180611f6f6026913960400191505060405180910390fd5b6001600160a01b0383166000908152600b602052604090205463ffffffff1680610c3e5760009150506107ba565b6001600160a01b0384166000908152600a6020908152604080832063ffffffff600019860181168552925290912054168310610cad576001600160a01b0384166000908152600a602090815260408083206000199490940163ffffffff168352929052206001015490506107ba565b6001600160a01b0384166000908152600a6020908152604080832083805290915290205463ffffffff16831015610ce85760009150506107ba565b600060001982015b8163ffffffff168163ffffffff161115610da157600282820363ffffffff16048103610d1a611e35565b506001600160a01b0387166000908152600a6020908152604080832063ffffffff808616855290835292819020815180830190925280549093168082526001909301549181019190915290871415610d7c576020015194506107ba9350505050565b805163ffffffff16871115610d9357819350610d9a565b6001820392505b5050610cf0565b506001600160a01b0385166000908152600a6020908152604080832063ffffffff9094168352929052206001015491505092915050565b600c6020526000908152604090205481565b60006107075b6000546001600160a01b031690565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107985780601f1061076d57610100808354040283529160200191610798565b6000610e6a611417565b6000546001600160a01b03908116911614610eba576040805162461bcd60e51b81526020600482018190526024820152600080516020611f95833981519152604482015290519081900360640190fd5b6001600160a01b038216610eff5760405162461bcd60e51b8152600401808060200182810382526023815260200180611eff6023913960400191505060405180910390fd5b6107ba6007836119d2565b6000610f14611417565b6000546001600160a01b03908116911614610f64576040805162461bcd60e51b81526020600482018190526024820152600080516020611f95833981519152604482015290519081900360640190fd5b6107b6610f6f611417565b83611705565b60006107b6610f82611417565b8461091a856040518060600160405280602581526020016120216025913960026000610fac611417565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919061166e565b60006107b6610fea611417565b848461151c565b60006107ba6007836119e7565b6001600160a01b0381166000908152600b602052604081205463ffffffff168061102957600061105b565b6001600160a01b0383166000908152600a6020908152604080832063ffffffff60001986011684529091529020600101545b9392505050565b60007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86661108d61070c565b8051906020012061109c6119fc565b60408051602080820195909552808201939093526060830191909152306080808401919091528151808403909101815260a0830182528051908401207fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf60c08401526001600160a01b038b1660e084015261010083018a90526101208084018a9052825180850390910181526101408401835280519085012061190160f01b6101608501526101628401829052610182808501829052835180860390910181526101a285018085528151918701919091206000918290526101c2860180865281905260ff8b166101e287015261020286018a90526102228601899052935192965090949293909260019261024280840193601f198301929081900390910190855afa1580156111cf573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166112215760405162461bcd60e51b81526004018080602001828103825260258152602001806120796025913960400191505060405180910390fd5b6001600160a01b0381166000908152600c60205260409020805460018101909155891461127f5760405162461bcd60e51b8152600401808060200182810382526021815260200180611ede6021913960400191505060405180910390fd5b874211156112be5760405162461bcd60e51b8152600401808060200182810382526025815260200180611f226025913960400191505060405180910390fd5b6112c8818b61193d565b505050505b505050505050565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b600a6020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b611359611417565b6000546001600160a01b039081169116146113a9576040805162461bcd60e51b81526020600482018190526024820152600080516020611f95833981519152604482015290519081900360640190fd5b610af881611a00565b60008282018381101561105b576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60006107ba82611aa0565b3390565b6001600160a01b0383166114605760405162461bcd60e51b8152600401808060200182810382526024815260200180611e946024913960400191505060405180910390fd5b6001600160a01b0382166114a55760405162461bcd60e51b815260040180806020018281038252602281526020018061209e6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600061105b836001600160a01b038416611aa4565b6001600160a01b0383166115615760405162461bcd60e51b8152600401808060200182810382526025815260200180611e6f6025913960400191505060405180910390fd5b6001600160a01b0382166115a65760405162461bcd60e51b8152600401808060200182810382526023815260200180611fdb6023913960400191505060405180910390fd5b6115e381604051806060016040528060268152602001611fb5602691396001600160a01b038616600090815260016020526040902054919061166e565b6001600160a01b03808516600090815260016020526040808220939093559084168152205461161290826113b2565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156116fd5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156116c25781810151838201526020016116aa565b50505050905090810190601f1680156116ef5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60006001600160a01b038316611762576040805162461bcd60e51b815260206004820152601f60248201527f42455032303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b60035461176f90836113b2565b6003556001600160a01b03831660009081526001602052604090205461179590836113b2565b6001600160a01b03841660008181526001602090815260408083209490945583518681529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a392915050565b816001600160a01b0316836001600160a01b0316141580156118115750600081115b1561192c576001600160a01b038316156118a3576001600160a01b0383166000908152600b602052604081205463ffffffff169081611851576000611883565b6001600160a01b0385166000908152600a6020908152604080832063ffffffff60001987011684529091529020600101545b905060006118918285611b6a565b905061189f86848484611bac565b5050505b6001600160a01b0382161561192c576001600160a01b0382166000908152600b602052604081205463ffffffff1690816118de576000611910565b6001600160a01b0384166000908152600a6020908152604080832063ffffffff60001987011684529091529020600101545b9050600061191e82856113b2565b90506112cd85848484611bac565b505050565b600061105b8383611d11565b6001600160a01b038083166000908152600960205260408120549091169061196484610b13565b6001600160a01b0385811660008181526009602052604080822080546001600160a01b031916898616908117909155905194955093928616927f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a46119cc8284836117ef565b50505050565b600061105b836001600160a01b038416611d75565b600061105b836001600160a01b038416611dbf565b4690565b6001600160a01b038116611a455760405162461bcd60e51b8152600401808060200182810382526026815260200180611eb86026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b5490565b60008181526001830160205260408120548015611b605783546000198083019190810190600090879083908110611ad757fe5b9060005260206000200154905080876000018481548110611af457fe5b600091825260208083209091019290925582815260018981019092526040902090840190558654879080611b2457fe5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506107ba565b60009150506107ba565b600061105b83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061166e565b6000611bd04360405180606001604052806033815260200161204660339139611dd7565b905060008463ffffffff16118015611c1957506001600160a01b0385166000908152600a6020908152604080832063ffffffff6000198901811685529252909120548282169116145b15611c56576001600160a01b0385166000908152600a6020908152604080832063ffffffff60001989011684529091529020600101829055611cc7565b60408051808201825263ffffffff808416825260208083018681526001600160a01b038a166000818152600a84528681208b8616825284528681209551865490861663ffffffff199182161787559251600196870155908152600b9092529390208054928801909116919092161790555b604080518481526020810184905281516001600160a01b038816927fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724928290030190a25050505050565b81546000908210611d535760405162461bcd60e51b8152600401808060200182810382526022815260200180611e4d6022913960400191505060405180910390fd5b826000018281548110611d6257fe5b9060005260206000200154905092915050565b6000611d818383611dbf565b611db7575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556107ba565b5060006107ba565b60009081526001919091016020526040902054151590565b6000816401000000008410611e2d5760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156116c25781810151838201526020016116aa565b509192915050565b60408051808201909152600080825260208201529056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e647342455032303a207472616e736665722066726f6d20746865207a65726f206164647265737342455032303a20617070726f76652066726f6d20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734d4d4f3a3a64656c656761746542795369673a20696e76616c6964206e6f6e63654d4d4f3a205f6164644d696e74657220697320746865207a65726f20616464726573734d4d4f3a3a64656c656761746542795369673a207369676e6174757265206578706972656442455032303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654d4d4f3a3a6765745072696f72566f7465733a206e6f74207965742064657465726d696e65644f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657242455032303a207472616e7366657220616d6f756e7420657863656564732062616c616e636542455032303a207472616e7366657220746f20746865207a65726f20616464726573734d4d4f3a205f64656c4d696e74657220697320746865207a65726f206164647265737342455032303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f4d4d4f3a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d626572206578636565647320333220626974734d4d4f3a3a64656c656761746542795369673a20696e76616c6964207369676e617475726542455032303a20617070726f766520746f20746865207a65726f2061646472657373a2646970667358221220f58634fa9990a66be94c01d708af3c515c14315ba74eca2df7df29b88c326bea64736f6c634300060c0033

Deployed Bytecode Sourcemap

33830:9696:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42899:113;;;:::i;:::-;;;;;;;;;;;;;;;;18511:92;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20110:161;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;20110:161:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;19095:104;;;:::i;18987:100::-;;;:::i;34865:122::-;;;:::i;42669:222::-;;;;;;;;;;;;;;;;-1:-1:-1;42669:222:0;-1:-1:-1;;;;;42669:222:0;;:::i;20742:397::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;20742:397:0;;;;;;;;;;;;;;;;;:::i;18670:92::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;21547:210;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;21547:210:0;;;;;;;;:::i;34052:199::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;34052:199:0;;;;;;;;:::i;35848:149::-;;;;;;;;;;;;;;;;-1:-1:-1;35848:149:0;-1:-1:-1;;;;;35848:149:0;;:::i;:::-;;;;-1:-1:-1;;;;;35848:149:0;;;;;;;;;;;;;;43157:213;;;;;;;;;;;;;;;;-1:-1:-1;43157:213:0;;:::i;36141:104::-;;;;;;;;;;;;;;;;-1:-1:-1;36141:104:0;-1:-1:-1;;;;;36141:104:0;;:::i;:::-;;34743:49;;;;;;;;;;;;;;;;-1:-1:-1;34743:49:0;-1:-1:-1;;;;;34743:49:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;19261:119;;;;;;;;;;;;;;;;-1:-1:-1;19261:119:0;-1:-1:-1;;;;;19261:119:0;;:::i;1751:140::-;;;:::i;38741:1252::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;38741:1252:0;;;;;;;;:::i;35279:39::-;;;;;;;;;;;;;;;;-1:-1:-1;35279:39:0;-1:-1:-1;;;;;35279:39:0;;:::i;18354:94::-;;;:::i;1109:79::-;;;:::i;18827:96::-;;;:::i;42442:219::-;;;;;;;;;;;;;;;;-1:-1:-1;42442:219:0;-1:-1:-1;;;;;42442:219:0;;:::i;22788:130::-;;;;;;;;;;;;;;;;-1:-1:-1;22788:130:0;;:::i;22259:311::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;22259:311:0;;;;;;;;:::i;19592:167::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19592:167:0;;;;;;;;:::i;43020:129::-;;;;;;;;;;;;;;;;-1:-1:-1;43020:129:0;-1:-1:-1;;;;;43020:129:0;;:::i;38055:255::-;;;;;;;;;;;;;;;;-1:-1:-1;38055:255:0;-1:-1:-1;;;;;38055:255:0;;:::i;36679:1175::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;36679:1175:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;19821:143::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19821:143:0;;;;;;;;;;:::i;35081:117::-;;;:::i;34604:70::-;;;;;;;;;;;;;;;;-1:-1:-1;34604:70:0;;-1:-1:-1;;;;;34604:70:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;2046:109;;;;;;;;;;;;;;;;-1:-1:-1;2046:109:0;-1:-1:-1;;;;;2046:109:0;;:::i;42899:113::-;42947:7;42974:30;42995:8;42974:20;:30::i;:::-;42967:37;;42899:113;:::o;18511:92::-;18590:5;18583:12;;;;;;;;-1:-1:-1;;18583:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18557:13;;18583:12;;18590:5;;18583:12;;18590:5;18583:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18511:92;:::o;20110:161::-;20185:4;20202:39;20211:12;:10;:12::i;:::-;20225:7;20234:6;20202:8;:39::i;:::-;-1:-1:-1;20259:4:0;20110:161;;;;;:::o;19095:104::-;17427:13;19095:104;:::o;18987:100::-;19067:12;;18987:100;:::o;34865:122::-;34907:80;34865:122;:::o;42669:222::-;42734:4;1331:12;:10;:12::i;:::-;1321:6;;-1:-1:-1;;;;;1321:6:0;;;:22;;;1313:67;;;;;-1:-1:-1;;;1313:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1313:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;42759:24:0;::::1;42751:72;;;;-1:-1:-1::0;;;42751:72:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42841:42;42862:8;42872:10;42841:20;:42::i;20742:397::-:0;20874:4;20891:36;20901:6;20909:9;20920:6;20891:9;:36::i;:::-;20938:171;20961:6;20982:12;:10;:12::i;:::-;21009:89;21047:6;21009:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21009:19:0;;;;;;:11;:19;;;;;;21029:12;:10;:12::i;:::-;-1:-1:-1;;;;;21009:33:0;;;;;;;;;;;;-1:-1:-1;21009:33:0;;;:89;:37;:89::i;:::-;20938:8;:171::i;:::-;-1:-1:-1;21127:4:0;20742:397;;;;;:::o;18670:92::-;18745:9;;;;18670:92;:::o;21547:210::-;21627:4;21644:83;21653:12;:10;:12::i;:::-;21667:7;21676:50;21715:10;21676:11;:25;21688:12;:10;:12::i;:::-;-1:-1:-1;;;;;21676:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;21676:25:0;;;:34;;;;;;;;;;;:38;:50::i;34052:199::-;34122:4;43454:20;43463:10;43454:8;:20::i;:::-;43446:57;;;;;-1:-1:-1;;;43446:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;34139:19:::1;34145:3;34150:7;34139:5;:19::i;:::-;-1:-1:-1::0;;;;;;34196:15:0;;::::1;34192:1;34196:15:::0;;;:10:::1;:15;::::0;;;;;34169:52:::1;::::0;34196:15:::1;34213:7:::0;34169:14:::1;:52::i;35848:149::-:0;-1:-1:-1;;;;;35968:21:0;;;35936:7;35968:21;;;:10;:21;;;;;;;;35848:149::o;43157:213::-;43223:7;1331:12;:10;:12::i;:::-;1321:6;;-1:-1:-1;;;;;1321:6:0;;;:22;;;1313:67;;;;;-1:-1:-1;;;1313:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1313:67:0;;;;;;;;;;;;;;;43280:1:::1;43260:17;:15;:17::i;:::-;:21;43250:6;:31;;43242:68;;;::::0;;-1:-1:-1;;;43242:68:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;43328:34;43345:8;43355:6;43328:16;:34::i;36141:104::-:0;36205:32;36215:10;36227:9;36205;:32::i;:::-;36141:104;:::o;34743:49::-;;;;;;;;;;;;;;;:::o;19261:119::-;-1:-1:-1;;;;;19354:18:0;19327:7;19354:18;;;:9;:18;;;;;;;19261:119::o;1751:140::-;1331:12;:10;:12::i;:::-;1321:6;;-1:-1:-1;;;;;1321:6:0;;;:22;;;1313:67;;;;;-1:-1:-1;;;1313:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1313:67:0;;;;;;;;;;;;;;;1850:1:::1;1834:6:::0;;1813:40:::1;::::0;-1:-1:-1;;;;;1834:6:0;;::::1;::::0;1813:40:::1;::::0;1850:1;;1813:40:::1;1881:1;1864:19:::0;;-1:-1:-1;;;;;;1864:19:0::1;::::0;;1751:140::o;38741:1252::-;38849:7;38896:12;38882:11;:26;38874:77;;;;-1:-1:-1;;;38874:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38986:23:0;;38964:19;38986:23;;;:14;:23;;;;;;;;39024:17;39020:58;;39065:1;39058:8;;;;;39020:58;-1:-1:-1;;;;;39138:20:0;;;;;;:11;:20;;;;;;;;:38;-1:-1:-1;;39159:16:0;;39138:38;;;;;;;;;:48;;:63;-1:-1:-1;39134:147:0;;-1:-1:-1;;;;;39225:20:0;;;;;;:11;:20;;;;;;;;-1:-1:-1;;39246:16:0;;;;39225:38;;;;;;;;39261:1;39225:44;;;-1:-1:-1;39218:51:0;;39134:147;-1:-1:-1;;;;;39342:20:0;;;;;;:11;:20;;;;;;;;:23;;;;;;;;:33;:23;:33;:47;-1:-1:-1;39338:88:0;;;39413:1;39406:8;;;;;39338:88;39438:12;-1:-1:-1;;39480:16:0;;39507:428;39522:5;39514:13;;:5;:13;;;39507:428;;;39586:1;39569:13;;;39568:19;;;39560:27;;39629:20;;:::i;:::-;-1:-1:-1;;;;;;39652:20:0;;;;;;:11;:20;;;;;;;;:28;;;;;;;;;;;;;39629:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39699:27;;39695:229;;;39754:8;;;;-1:-1:-1;39747:15:0;;-1:-1:-1;;;;39747:15:0;39695:229;39788:12;;:26;;;-1:-1:-1;39784:140:0;;;39843:6;39835:14;;39784:140;;;39907:1;39898:6;:10;39890:18;;39784:140;39507:428;;;;;-1:-1:-1;;;;;;39952:20:0;;;;;;:11;:20;;;;;;;;:27;;;;;;;;;;:33;;;;-1:-1:-1;;38741:1252:0;;;;:::o;35279:39::-;;;;;;;;;;;;;:::o;18354:94::-;18406:7;18433;1109:79;1147:7;1174:6;-1:-1:-1;;;;;1174:6:0;1109:79;:::o;18827:96::-;18908:7;18901:14;;;;;;;;-1:-1:-1;;18901:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18875:13;;18901:14;;18908:7;;18901:14;;18908:7;18901:14;;;;;;;;;;;;;;;;;;;;;;;;42442:219;42507:4;1331:12;:10;:12::i;:::-;1321:6;;-1:-1:-1;;;;;1321:6:0;;;:22;;;1313:67;;;;;-1:-1:-1;;;1313:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1313:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;42532:24:0;::::1;42524:72;;;;-1:-1:-1::0;;;42524:72:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42614:39;42632:8;42642:10;42614:17;:39::i;22788:130::-:0;22844:4;1331:12;:10;:12::i;:::-;1321:6;;-1:-1:-1;;;;;1321:6:0;;;:22;;;1313:67;;;;;-1:-1:-1;;;1313:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1313:67:0;;;;;;;;;;;;;;;22861:27:::1;22867:12;:10;:12::i;:::-;22881:6;22861:5;:27::i;22259:311::-:0;22344:4;22361:179;22384:12;:10;:12::i;:::-;22411:7;22433:96;22472:15;22433:96;;;;;;;;;;;;;;;;;:11;:25;22445:12;:10;:12::i;:::-;-1:-1:-1;;;;;22433:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;22433:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;19592:167::-;19670:4;19687:42;19697:12;:10;:12::i;:::-;19711:9;19722:6;19687:9;:42::i;43020:129::-;43076:4;43100:41;43123:8;43133:7;43100:22;:41::i;38055:255::-;-1:-1:-1;;;;;38194:23:0;;38147:7;38194:23;;;:14;:23;;;;;;;;38235:16;:67;;38301:1;38235:67;;;-1:-1:-1;;;;;38254:20:0;;;;;;:11;:20;;;;;;;;:38;-1:-1:-1;;38275:16:0;;38254:38;;;;;;;;38290:1;38254:44;;38235:67;38228:74;38055:255;-1:-1:-1;;;38055:255:0:o;36679:1175::-;36872:23;34907:80;37001:6;:4;:6::i;:::-;36985:24;;;;;;37028:12;:10;:12::i;:::-;36922:165;;;;;;;;;;;;;;;;;;;;;;;;;37067:4;36922:165;;;;;;;;;;;;;;;;;;;;;;;36898:200;;;;;;35127:71;37156:140;;;;-1:-1:-1;;;;;37156:140:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37132:175;;;;;;-1:-1:-1;;;37361:123:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37337:158;;;;;;;;;-1:-1:-1;37528:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36898:200;;-1:-1:-1;37132:175:0;;37337:158;;-1:-1:-1;;37528:26:0;;;;;;;-1:-1:-1;;37528:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;37528:26:0;;-1:-1:-1;;37528:26:0;;;-1:-1:-1;;;;;;;37573:23:0;;37565:73;;;;-1:-1:-1;;;37565:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;37666:17:0;;;;;;:6;:17;;;;;:19;;;;;;;;37657:28;;37649:74;;;;-1:-1:-1;;;37649:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37749:6;37742:3;:13;;37734:63;;;;-1:-1:-1;;;37734:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37815:31;37825:9;37836;37815;:31::i;:::-;37808:38;;;;36679:1175;;;;;;;:::o;19821:143::-;-1:-1:-1;;;;;19929:18:0;;;19902:7;19929:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;19821:143::o;35081:117::-;35127:71;35081:117;:::o;34604:70::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;2046:109::-;1331:12;:10;:12::i;:::-;1321:6;;-1:-1:-1;;;;;1321:6:0;;;:22;;;1313:67;;;;;-1:-1:-1;;;1313:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1313:67:0;;;;;;;;;;;;;;;2119:28:::1;2138:8;2119:18;:28::i;5970:181::-:0;6028:7;6060:5;;;6084:6;;;;6076:46;;;;;-1:-1:-1;;;6076:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;31559:117;31622:7;31649:19;31657:3;31649:7;:19::i;273:98::-;353:10;273:98;:::o;25636:372::-;-1:-1:-1;;;;;25764:19:0;;25756:68;;;;-1:-1:-1;;;25756:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25843:21:0;;25835:68;;;;-1:-1:-1;;;25835:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25916:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;25968:32;;;;;;;;;;;;;;;;;25636:372;;;:::o;31080:149::-;31153:4;31177:44;31185:3;-1:-1:-1;;;;;31205:14:0;;31177:7;:44::i;23408:505::-;-1:-1:-1;;;;;23540:20:0;;23532:70;;;;-1:-1:-1;;;23532:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23621:23:0;;23613:71;;;;-1:-1:-1;;;23613:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23717;23739:6;23717:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23717:17:0;;;;;;:9;:17;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;23697:17:0;;;;;;;:9;:17;;;;;;:91;;;;23822:20;;;;;;;:32;;23847:6;23822:24;:32::i;:::-;-1:-1:-1;;;;;23799:20:0;;;;;;;:9;:20;;;;;;;;;:55;;;;23870:35;;;;;;;23799:20;;23870:35;;;;;;;;;;;;;23408:505;;;:::o;6873:226::-;6993:7;7029:12;7021:6;;;;7013:29;;;;-1:-1:-1;;;7013:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;7065:5:0;;;6873:226::o;24194:322::-;24259:4;-1:-1:-1;;;;;24284:21:0;;24276:65;;;;;-1:-1:-1;;;24276:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;24369:12;;:24;;24386:6;24369:16;:24::i;:::-;24354:12;:39;-1:-1:-1;;;;;24425:18:0;;;;;;:9;:18;;;;;;:30;;24448:6;24425:22;:30::i;:::-;-1:-1:-1;;;;;24404:18:0;;;;;;:9;:18;;;;;;;;:51;;;;24471:37;;;;;;;24404:18;;;;24471:37;;;;;;;;;;24194:322;;;;:::o;40446:947::-;40552:6;-1:-1:-1;;;;;40542:16:0;:6;-1:-1:-1;;;;;40542:16:0;;;:30;;;;;40571:1;40562:6;:10;40542:30;40538:848;;;-1:-1:-1;;;;;40593:20:0;;;40589:385;;-1:-1:-1;;;;;40701:22:0;;40682:16;40701:22;;;:14;:22;;;;;;;;;40762:13;:60;;40821:1;40762:60;;;-1:-1:-1;;;;;40778:19:0;;;;;;:11;:19;;;;;;;;:34;-1:-1:-1;;40798:13:0;;40778:34;;;;;;;;40810:1;40778:40;;40762:60;40742:80;-1:-1:-1;40841:17:0;40861:21;40742:80;40875:6;40861:13;:21::i;:::-;40841:41;;40901:57;40918:6;40926:9;40937;40948;40901:16;:57::i;:::-;40589:385;;;;-1:-1:-1;;;;;40994:20:0;;;40990:385;;-1:-1:-1;;;;;41102:22:0;;41083:16;41102:22;;;:14;:22;;;;;;;;;41163:13;:60;;41222:1;41163:60;;;-1:-1:-1;;;;;41179:19:0;;;;;;:11;:19;;;;;;;;:34;-1:-1:-1;;41199:13:0;;41179:34;;;;;;;;41211:1;41179:40;;41163:60;41143:80;-1:-1:-1;41242:17:0;41262:21;41143:80;41276:6;41262:13;:21::i;:::-;41242:41;;41302:57;41319:6;41327:9;41338;41349;41302:16;:57::i;40990:385::-;40446:947;;;:::o;32030:149::-;32104:7;32147:22;32151:3;32163:5;32147:3;:22::i;40001:437::-;-1:-1:-1;;;;;40118:21:0;;;40092:23;40118:21;;;:10;:21;;;;;;;;;;40177:20;40129:9;40177;:20::i;:::-;-1:-1:-1;;;;;40252:21:0;;;;;;;:10;:21;;;;;;:33;;-1:-1:-1;;;;;;40252:33:0;;;;;;;;;;40303:54;;40150:47;;-1:-1:-1;40252:33:0;40303:54;;;;;;40252:21;40303:54;40370:60;40385:15;40402:9;40413:16;40370:14;:60::i;:::-;40001:437;;;;:::o;30761:143::-;30831:4;30855:41;30860:3;-1:-1:-1;;;;;30880:14:0;;30855:4;:41::i;31315:158::-;31395:4;31419:46;31429:3;-1:-1:-1;;;;;31449:14:0;;31419:9;:46::i;42281:153::-;42391:9;42281:153;:::o;2261:229::-;-1:-1:-1;;;;;2335:22:0;;2327:73;;;;-1:-1:-1;;;2327:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2437:6;;;2416:38;;-1:-1:-1;;;;;2416:38:0;;;;2437:6;;;2416:38;;;2465:6;:17;;-1:-1:-1;;;;;;2465:17:0;-1:-1:-1;;;;;2465:17:0;;;;;;;;;;2261:229::o;29840:109::-;29923:18;;29840:109::o;27982:1557::-;28048:4;28187:19;;;:12;;;:19;;;;;;28223:15;;28219:1313;;28671:18;;-1:-1:-1;;28622:14:0;;;;28671:22;;;;28598:21;;28671:3;;:22;;28958;;;;;;;;;;;;;;28938:42;;29104:9;29075:3;:11;;29087:13;29075:26;;;;;;;;;;;;;;;;;;;:38;;;;29181:23;;;29223:1;29181:12;;;:23;;;;;;29207:17;;;29181:43;;29333:17;;29181:3;;29333:17;;;;;;;;;;;;;;;;;;;;;;29428:3;:12;;:19;29441:5;29428:19;;;;;;;;;;;29421:26;;;29471:4;29464:11;;;;;;;;28219:1313;29515:5;29508:12;;;;;6434:136;6492:7;6519:43;6523:1;6526;6519:43;;;;;;;;;;;;;;;;;:3;:43::i;41401:703::-;41580:18;41601:75;41608:12;41601:75;;;;;;;;;;;;;;;;;:6;:75::i;:::-;41580:96;;41708:1;41693:12;:16;;;:85;;;;-1:-1:-1;;;;;;41713:22:0;;;;;;:11;:22;;;;;;;;:65;-1:-1:-1;;41736:16:0;;41713:40;;;;;;;;;:50;:65;;;:50;;:65;41693:85;41689:339;;;-1:-1:-1;;;;;41795:22:0;;;;;;:11;:22;;;;;;;;:40;-1:-1:-1;;41818:16:0;;41795:40;;;;;;;;41833:1;41795:46;:57;;;41689:339;;;41924:33;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;41885:22:0;;-1:-1:-1;41885:22:0;;;:11;:22;;;;;:36;;;;;;;;;;:72;;;;;;;-1:-1:-1;;41885:72:0;;;;;;;;;;;;;41972:25;;;:14;:25;;;;;;:44;;42000:16;;;41972:44;;;;;;;;;;41689:339;42045:51;;;;;;;;;;;;;;-1:-1:-1;;;;;42045:51:0;;;;;;;;;;;41401:703;;;;;:::o;30303:204::-;30398:18;;30370:7;;30398:26;-1:-1:-1;30390:73:0;;;;-1:-1:-1;;;30390:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30481:3;:11;;30493:5;30481:18;;;;;;;;;;;;;;;;30474:25;;30303:204;;;;:::o;27392:414::-;27455:4;27477:21;27487:3;27492:5;27477:9;:21::i;:::-;27472:327;;-1:-1:-1;27515:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;27698:18;;27676:19;;;:12;;;:19;;;;;;:40;;;;27731:11;;27472:327;-1:-1:-1;27782:5:0;27775:12;;29625:129;29698:4;29722:19;;;:12;;;;;:19;;;;;;:24;;;29625:129::o;42112:161::-;42187:6;42225:12;42218:5;42214:9;;42206:32;;;;-1:-1:-1;;;42206:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42263:1:0;;42112:161;-1:-1:-1;;42112:161:0:o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;:::o

Swarm Source

ipfs://f58634fa9990a66be94c01d708af3c515c14315ba74eca2df7df29b88c326bea
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.