BNB Price: $611.03 (-1.08%)
 

Overview

Max Total Supply

576,847,376.49033BNX

Holders

12,861

Market

Price

$0.00 @ 0.000000 BNB

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
4.37977680975476162 BNX

Value
$0.00
0x060aeca503f7383Fe8FBA8c9659ee0b8bf637077
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
WindToken

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

File 8 of 8: WindToken.sol
// SPDX-License-Identifier: SimPL-2.0

pragma solidity ^0.8.0;

import "./Ownable2Step.sol";
import "./ERC20.sol";
import "./EnumerableSet.sol";

pragma experimental ABIEncoderV2;

abstract contract DelegateERC20 is ERC20 {
    // @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;


    // support delegates mint
    function _mint(address account, uint256 amount) internal override virtual {
        super._mint(account, amount);
    
        // add delegates to the minter
        _moveDelegates(address(0), _delegates[account], amount);
    }


    function _transfer(address sender, address recipient, uint256 amount) internal override virtual {
        super._transfer(sender, recipient, amount);
        _moveDelegates(_delegates[sender], _delegates[recipient], amount);
    }

    /**
    * @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), "BSCToken::delegateBySig: invalid signature");
        require(nonce == nonces[signatory]++, "BSCToken::delegateBySig: invalid nonce");
        require(block.timestamp <= expiry, "BSCToken::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, "BSCToken::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 balances (not scaled);
        _delegates[delegator] = delegatee;
    
        _moveDelegates(currentDelegate, delegatee, delegatorBalance);
    
        emit DelegateChanged(delegator, currentDelegate, delegatee);
    }
    
    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 - 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 + amount;
                _writeCheckpoint(dstRep, dstRepNum, dstRepOld, dstRepNew);
            }
        }
    }
    
    function _writeCheckpoint(
        address delegatee,
        uint32 nCheckpoints,
        uint256 oldVotes,
        uint256 newVotes
    )
    internal
    {
        uint32 blockNumber = safe32(block.number, "BSCToken::_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 view returns (uint) {
        uint256 chainId;
        assembly { chainId := chainid() }
    
        return chainId;
    }
    
    /// @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);

}

contract WindToken is DelegateERC20, Ownable2Step {
    using EnumerableSet for EnumerableSet.AddressSet;
    EnumerableSet.AddressSet private _minters;
    uint256 public _maxSupply;

    uint256 public _newSupply;
    address public _ancestor;
    mapping(address => bool) internal _blacklist;

    event MinterUpdated(address indexed account, bool value);
    event BlacklistUpdated(address indexed account, bool value);
    event AncestorBurnt(uint256 amount);

    constructor(
        address ancestor,
        uint256 ancestorMaxSupply,
        uint256 newSupply
    ) ERC20("BinaryX", "BNX") {
        _ancestor = ancestor;
        _maxSupply = (ancestorMaxSupply * 100 + newSupply) * 1e18;
        _newSupply = newSupply * 1e18;
    }

    function mint(address to, uint256 amount) external onlyMinter {
        require(amount <= _newSupply, "BSCToken: mint amount exceeds _newSupply");
        _mint(to, amount);
        _newSupply = _newSupply - amount;
    }
    
    function addMinter(address account) external onlyOwner returns (bool) {
        require(account != address(0), "BSCToken: account is the zero address");
        if (EnumerableSet.add(_minters, account)) {
            emit MinterUpdated(account, true);
            return true;
        }
        return false;
    }
    
    function delMinter(address account) external onlyOwner returns (bool) {
        require(account != address(0), "BSCToken: account is the zero address");
        if (EnumerableSet.remove(_minters, account)) {
            emit MinterUpdated(account, false);
            return true;
        }
        return false;
    }
    
    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) external view onlyOwner returns (address){
        require(_index <= getMinterLength() - 1, "BSCToken: index out of bounds");
        return EnumerableSet.at(_minters, _index);
    }
    
    // modifier for mint function
    modifier onlyMinter() {
        require(isMinter(msg.sender), "caller is not the minter");
        _;
    }

    function burnAncestor(uint256 amount) external {
        address account = _msgSender();
        IERC20(_ancestor).transferFrom(account, address(0xdEaD), amount);
        _mint(account, amount * 100);
        emit AncestorBurnt(amount);
    }

    function isBlacklisted(address account) external view returns (bool) {
        return _blacklist[account];
    }

    function blacklist(address account) external onlyOwner {
        _blacklist[account] = true;
        emit BlacklistUpdated(account, true);
    }

    function unblacklist(address account) external onlyOwner {
        _blacklist[account] = false;
        emit BlacklistUpdated(account, false);
    }

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

        require(!_blacklist[from], "BSCToken: from is blacklisted");
        require(!_blacklist[to], "BSCToken: to is blacklisted");
    }
}


File 1 of 8: Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

File 2 of 8: EnumerableSet.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/structs/EnumerableSet.sol)
// This file was procedurally generated from scripts/generate/templates/EnumerableSet.js.

pragma solidity ^0.8.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```solidity
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 *
 * [WARNING]
 * ====
 * Trying to delete such a structure from storage will likely result in data corruption, rendering the structure
 * unusable.
 * See https://github.com/ethereum/solidity/pull/11843[ethereum/solidity#11843] for more info.
 *
 * In order to clean an EnumerableSet, you can either remove all elements one by one or create a fresh instance using an
 * array of EnumerableSet.
 * ====
 */
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;

            if (lastIndex != toDeleteIndex) {
                bytes32 lastValue = set._values[lastIndex];

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

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

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

            return true;
        } else {
            return false;
        }
    }

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

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

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

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function _values(Set storage set) private view returns (bytes32[] memory) {
        return set._values;
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

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

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

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

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

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

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(Bytes32Set storage set) internal view returns (bytes32[] memory) {
        bytes32[] memory store = _values(set._inner);
        bytes32[] memory result;

        /// @solidity memory-safe-assembly
        assembly {
            result := store
        }

        return result;
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

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

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

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

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

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

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(AddressSet storage set) internal view returns (address[] memory) {
        bytes32[] memory store = _values(set._inner);
        address[] memory result;

        /// @solidity memory-safe-assembly
        assembly {
            result := store
        }

        return result;
    }

    // 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 in 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));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(UintSet storage set) internal view returns (uint256[] memory) {
        bytes32[] memory store = _values(set._inner);
        uint256[] memory result;

        /// @solidity memory-safe-assembly
        assembly {
            result := store
        }

        return result;
    }
}

File 3 of 8: ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./IERC20Metadata.sol";
import "./Context.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

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

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}
}

File 4 of 8: IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount) external returns (bool);
}

File 5 of 8: IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

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

File 6 of 8: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "./Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 7 of 8: Ownable2Step.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (access/Ownable2Step.sol)

pragma solidity ^0.8.0;

import "./Ownable.sol";

/**
 * @dev Contract module which provides access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership} and {acceptOwnership}.
 *
 * This module is used through inheritance. It will make available all functions
 * from parent (Ownable).
 */
abstract contract Ownable2Step is Ownable {
    address private _pendingOwner;

    event OwnershipTransferStarted(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Returns the address of the pending owner.
     */
    function pendingOwner() public view virtual returns (address) {
        return _pendingOwner;
    }

    /**
     * @dev Starts the ownership transfer of the contract to a new account. Replaces the pending transfer if there is one.
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual override onlyOwner {
        _pendingOwner = newOwner;
        emit OwnershipTransferStarted(owner(), newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`) and deletes any pending owner.
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual override {
        delete _pendingOwner;
        super._transferOwnership(newOwner);
    }

    /**
     * @dev The new owner accepts the ownership transfer.
     */
    function acceptOwnership() public virtual {
        address sender = _msgSender();
        require(pendingOwner() == sender, "Ownable2Step: caller is not the new owner");
        _transferOwnership(sender);
    }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"ancestor","type":"address"},{"internalType":"uint256","name":"ancestorMaxSupply","type":"uint256"},{"internalType":"uint256","name":"newSupply","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"AncestorBurnt","type":"event"},{"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":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"value","type":"bool"}],"name":"BlacklistUpdated","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":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"value","type":"bool"}],"name":"MinterUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferStarted","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":[],"name":"_ancestor","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_newSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","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":"account","type":"address"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnAncestor","outputs":[],"stateMutability":"nonpayable","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":"account","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":"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":[{"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":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[],"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":"pendingOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"unblacklist","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162004afc38038062004afc833981810160405281019062000037919062000337565b6040518060400160405280600781526020017f42696e61727958000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f424e5800000000000000000000000000000000000000000000000000000000008152508160039081620000b4919062000603565b508060049081620000c6919062000603565b505050620000e9620000dd6200018660201b60201c565b6200018e60201b60201c565b82600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550670de0b6b3a76400008160648462000143919062000719565b6200014f919062000764565b6200015b919062000719565b600d81905550670de0b6b3a76400008162000177919062000719565b600e819055505050506200079f565b600033905090565b600a60006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055620001c981620001cc60201b62001a961760201c565b50565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620002c48262000297565b9050919050565b620002d681620002b7565b8114620002e257600080fd5b50565b600081519050620002f681620002cb565b92915050565b6000819050919050565b6200031181620002fc565b81146200031d57600080fd5b50565b600081519050620003318162000306565b92915050565b60008060006060848603121562000353576200035262000292565b5b60006200036386828701620002e5565b9350506020620003768682870162000320565b9250506040620003898682870162000320565b9150509250925092565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200041557607f821691505b6020821081036200042b576200042a620003cd565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004957fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000456565b620004a1868362000456565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620004e4620004de620004d884620002fc565b620004b9565b620002fc565b9050919050565b6000819050919050565b6200050083620004c3565b620005186200050f82620004eb565b84845462000463565b825550505050565b600090565b6200052f62000520565b6200053c818484620004f5565b505050565b5b8181101562000564576200055860008262000525565b60018101905062000542565b5050565b601f821115620005b3576200057d8162000431565b620005888462000446565b8101602085101562000598578190505b620005b0620005a78562000446565b83018262000541565b50505b505050565b600082821c905092915050565b6000620005d860001984600802620005b8565b1980831691505092915050565b6000620005f38383620005c5565b9150826002028217905092915050565b6200060e8262000393565b67ffffffffffffffff8111156200062a57620006296200039e565b5b620006368254620003fc565b6200064382828562000568565b600060209050601f8311600181146200067b576000841562000666578287015190505b620006728582620005e5565b865550620006e2565b601f1984166200068b8662000431565b60005b82811015620006b5578489015182556001820191506020850194506020810190506200068e565b86831015620006d55784890151620006d1601f891682620005c5565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006200072682620002fc565b91506200073383620002fc565b92508282026200074381620002fc565b915082820484148315176200075d576200075c620006ea565b5b5092915050565b60006200077182620002fc565b91506200077e83620002fc565b9250828201905080821115620007995762000798620006ea565b5b92915050565b61434d80620007af6000396000f3fe608060405234801561001057600080fd5b50600436106102325760003560e01c8063782d6fe111610130578063aa271e1a116100b8578063e7a324dc1161007c578063e7a324dc146106f1578063f1127ed81461070f578063f2fde38b14610740578063f9f92be41461075c578063fe575a871461077857610232565b8063aa271e1a14610627578063b4b5ea5714610657578063c3cda52014610687578063dd62ed3e146106a3578063e30c3978146106d357610232565b80638da5cb5b116100ff5780638da5cb5b1461055b57806395d89b4114610579578063983b2d5614610597578063a457c2d7146105c7578063a9059cbb146105f757610232565b8063782d6fe1146104d357806379ba5097146105035780637ecebe001461050d5780638941f1491461053d57610232565b806338c69849116101be5780636e631ded116101825780636e631ded146104315780636fcfff451461044d57806370a082311461047d578063715018a6146104ad57806375e3661e146104b757610232565b806338c698491461037b578063395093511461039957806340c10f19146103c95780635b7121f8146103e55780635c19a95c1461041557610232565b806320606b701161020557806320606b70146102c157806322f4596f146102df57806323338b88146102fd57806323b872dd1461032d578063313ce5671461035d57610232565b80630323aac71461023757806306fdde0314610255578063095ea7b31461027357806318160ddd146102a3575b600080fd5b61023f6107a8565b60405161024c9190612e93565b60405180910390f35b61025d6107b9565b60405161026a9190612f3e565b60405180910390f35b61028d60048036038101906102889190612fef565b61084b565b60405161029a919061304a565b60405180910390f35b6102ab61086e565b6040516102b89190612e93565b60405180910390f35b6102c9610878565b6040516102d6919061307e565b60405180910390f35b6102e761089c565b6040516102f49190612e93565b60405180910390f35b61031760048036038101906103129190613099565b6108a2565b604051610324919061304a565b60405180910390f35b610347600480360381019061034291906130c6565b61098d565b604051610354919061304a565b60405180910390f35b6103656109bc565b6040516103729190613135565b60405180910390f35b6103836109c5565b604051610390919061315f565b60405180910390f35b6103b360048036038101906103ae9190612fef565b6109eb565b6040516103c0919061304a565b60405180910390f35b6103e360048036038101906103de9190612fef565b610a22565b005b6103ff60048036038101906103fa919061317a565b610ad1565b60405161040c919061315f565b60405180910390f35b61042f600480360381019061042a9190613099565b610b43565b005b61044b6004803603810190610446919061317a565b610b50565b005b61046760048036038101906104629190613099565b610c52565b60405161047491906131c6565b60405180910390f35b61049760048036038101906104929190613099565b610c75565b6040516104a49190612e93565b60405180910390f35b6104b5610cbd565b005b6104d160048036038101906104cc9190613099565b610cd1565b005b6104ed60048036038101906104e89190612fef565b610d83565b6040516104fa9190612e93565b60405180910390f35b61050b611158565b005b61052760048036038101906105229190613099565b6111e5565b6040516105349190612e93565b60405180910390f35b6105456111fd565b6040516105529190612e93565b60405180910390f35b610563611203565b604051610570919061315f565b60405180910390f35b61058161122d565b60405161058e9190612f3e565b60405180910390f35b6105b160048036038101906105ac9190613099565b6112bf565b6040516105be919061304a565b60405180910390f35b6105e160048036038101906105dc9190612fef565b6113aa565b6040516105ee919061304a565b60405180910390f35b610611600480360381019061060c9190612fef565b611421565b60405161061e919061304a565b60405180910390f35b610641600480360381019061063c9190613099565b611444565b60405161064e919061304a565b60405180910390f35b610671600480360381019061066c9190613099565b611458565b60405161067e9190612e93565b60405180910390f35b6106a1600480360381019061069c9190613239565b611537565b005b6106bd60048036038101906106b891906132c6565b6117cb565b6040516106ca9190612e93565b60405180910390f35b6106db611852565b6040516106e8919061315f565b60405180910390f35b6106f961187c565b604051610706919061307e565b60405180910390f35b61072960048036038101906107249190613332565b6118a0565b604051610737929190613372565b60405180910390f35b61075a60048036038101906107559190613099565b6118e1565b005b61077660048036038101906107719190613099565b61198e565b005b610792600480360381019061078d9190613099565b611a40565b60405161079f919061304a565b60405180910390f35b60006107b4600b611b5c565b905090565b6060600380546107c8906133ca565b80601f01602080910402602001604051908101604052809291908181526020018280546107f4906133ca565b80156108415780601f1061081657610100808354040283529160200191610841565b820191906000526020600020905b81548152906001019060200180831161082457829003601f168201915b5050505050905090565b600080610856611b71565b9050610863818585611b79565b600191505092915050565b6000600254905090565b7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b600d5481565b60006108ac611d42565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361091b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109129061346d565b60405180910390fd5b610926600b83611dc0565b15610983578173ffffffffffffffffffffffffffffffffffffffff167fb21afb9ce9be0a676f8f317ff0ca072fb89a4f8ce2d1b6fe80f8755c14f1cb196000604051610972919061304a565b60405180910390a260019050610988565b600090505b919050565b600080610998611b71565b90506109a5858285611df0565b6109b0858585611e7c565b60019150509392505050565b60006012905090565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806109f6611b71565b9050610a17818585610a0885896117cb565b610a1291906134bc565b611b79565b600191505092915050565b610a2b33611444565b610a6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a619061353c565b60405180910390fd5b600e54811115610aaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa6906135ce565b60405180910390fd5b610ab98282611f55565b80600e54610ac791906135ee565b600e819055505050565b6000610adb611d42565b6001610ae56107a8565b610aef91906135ee565b821115610b31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b289061366e565b60405180910390fd5b610b3c600b83611fce565b9050919050565b610b4d3382611fe8565b50565b6000610b5a611b71565b9050600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd8261dead856040518463ffffffff1660e01b8152600401610bbd9392919061368e565b6020604051808303816000875af1158015610bdc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c0091906136f1565b50610c1781606484610c12919061371e565b611f55565b7f4b09df1be6ec3142aadf0b2f7c5b716c8e501b2998630571c605e23eae5a241482604051610c469190612e93565b60405180910390a15050565b60076020528060005260406000206000915054906101000a900463ffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610cc5611d42565b610ccf6000612159565b565b610cd9611d42565b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f6a12b3df6cba4203bd7fd06b816789f87de8c594299aed5717ae070fac781bac6000604051610d78919061304a565b60405180910390a250565b6000438210610dc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbe906137d2565b60405180910390fd5b6000600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900463ffffffff16905060008163ffffffff1603610e33576000915050611152565b82600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000600184610e8291906137f2565b63ffffffff1663ffffffff16815260200190815260200160002060000160009054906101000a900463ffffffff1663ffffffff1611610f2f57600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000600183610f0991906137f2565b63ffffffff1663ffffffff16815260200190815260200160002060010154915050611152565b82600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008063ffffffff16815260200190815260200160002060000160009054906101000a900463ffffffff1663ffffffff161115610fb0576000915050611152565b600080600183610fc091906137f2565b90505b8163ffffffff168163ffffffff1611156110ec57600060028383610fe791906137f2565b610ff19190613859565b82610ffc91906137f2565b90506000600660008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008363ffffffff1663ffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a900463ffffffff1663ffffffff1663ffffffff168152602001600182015481525050905086816000015163ffffffff16036110bb57806020015195505050505050611152565b86816000015163ffffffff1610156110d5578193506110e5565b6001826110e291906137f2565b92505b5050610fc3565b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008363ffffffff1663ffffffff1681526020019081526020016000206001015493505050505b92915050565b6000611162611b71565b90508073ffffffffffffffffffffffffffffffffffffffff16611183611852565b73ffffffffffffffffffffffffffffffffffffffff16146111d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d0906138fc565b60405180910390fd5b6111e281612159565b50565b60086020528060005260406000206000915090505481565b600e5481565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461123c906133ca565b80601f0160208091040260200160405190810160405280929190818152602001828054611268906133ca565b80156112b55780601f1061128a576101008083540402835291602001916112b5565b820191906000526020600020905b81548152906001019060200180831161129857829003601f168201915b5050505050905090565b60006112c9611d42565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611338576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132f9061346d565b60405180910390fd5b611343600b8361218a565b156113a0578173ffffffffffffffffffffffffffffffffffffffff167fb21afb9ce9be0a676f8f317ff0ca072fb89a4f8ce2d1b6fe80f8755c14f1cb19600160405161138f919061304a565b60405180910390a2600190506113a5565b600090505b919050565b6000806113b5611b71565b905060006113c382866117cb565b905083811015611408576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ff9061398e565b60405180910390fd5b6114158286868403611b79565b60019250505092915050565b60008061142c611b71565b9050611439818585611e7c565b600191505092915050565b6000611451600b836121ba565b9050919050565b600080600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900463ffffffff16905060008163ffffffff16116114c257600061152f565b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600060018361151091906137f2565b63ffffffff1663ffffffff168152602001908152602001600020600101545b915050919050565b60007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a8666115626107b9565b805190602001206115716121ea565b3060405160200161158594939291906139ae565b60405160208183030381529060405280519060200120905060007fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf8888886040516020016115d694939291906139f3565b60405160208183030381529060405280519060200120905060008282604051602001611603929190613ab0565b6040516020818303038152906040528051906020012090506000600182888888604051600081526020016040526040516116409493929190613ae7565b6020604051602081039080840390855afa158015611662573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036116dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d490613b9e565b60405180910390fd5b600860008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061172d90613bbe565b919050558914611772576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176990613c78565b60405180910390fd5b874211156117b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ac90613d0a565b60405180910390fd5b6117bf818b611fe8565b50505050505050505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b6006602052816000526040600020602052806000526040600020600091509150508060000160009054906101000a900463ffffffff16908060010154905082565b6118e9611d42565b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16611949611203565b73ffffffffffffffffffffffffffffffffffffffff167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b611996611d42565b6001601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f6a12b3df6cba4203bd7fd06b816789f87de8c594299aed5717ae070fac781bac6001604051611a35919061304a565b60405180910390a250565b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000611b6a826000016121f7565b9050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611be8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bdf90613d9c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4e90613e2e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611d359190612e93565b60405180910390a3505050565b611d4a611b71565b73ffffffffffffffffffffffffffffffffffffffff16611d68611203565b73ffffffffffffffffffffffffffffffffffffffff1614611dbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db590613e9a565b60405180910390fd5b565b6000611de8836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612208565b905092915050565b6000611dfc84846117cb565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611e765781811015611e68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5f90613f06565b60405180910390fd5b611e758484848403611b79565b5b50505050565b611e8783838361231c565b611f50600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683612592565b505050565b611f5f8282612833565b611fca6000600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683612592565b5050565b6000611fdd8360000183612989565b60001c905092915050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600061205784610c75565b905082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506120e2828483612592565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f60405160405180910390a450505050565b600a60006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905561218781611a96565b50565b60006121b2836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6129b4565b905092915050565b60006121e2836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612a24565b905092915050565b6000804690508091505090565b600081600001805490509050919050565b6000808360010160008481526020019081526020016000205490506000811461231057600060018261223a91906135ee565b905060006001866000018054905061225291906135ee565b90508181146122c157600086600001828154811061227357612272613f26565b5b906000526020600020015490508087600001848154811061229757612296613f26565b5b90600052602060002001819055508387600101600083815260200190815260200160002081905550505b856000018054806122d5576122d4613f55565b5b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050612316565b60009150505b92915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361238b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238290613ff6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036123fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f190614088565b60405180910390fd5b612405838383612a47565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561248b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124829061411a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516125799190612e93565b60405180910390a361258c848484612b71565b50505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156125ce5750600081115b1561282e57600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612700576000600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900463ffffffff1690506000808263ffffffff16116126715760006126de565b600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006001846126bf91906137f2565b63ffffffff1663ffffffff168152602001908152602001600020600101545b9050600083826126ee91906135ee565b90506126fc86848484612b76565b5050505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461282d576000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900463ffffffff1690506000808263ffffffff161161279e57600061280b565b600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006001846127ec91906137f2565b63ffffffff1663ffffffff168152602001908152602001600020600101545b90506000838261281b91906134bc565b905061282985848484612b76565b5050505b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036128a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289990614186565b60405180910390fd5b6128ae60008383612a47565b80600260008282546128c091906134bc565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516129719190612e93565b60405180910390a361298560008383612b71565b5050565b60008260000182815481106129a1576129a0613f26565b5b9060005260206000200154905092915050565b60006129c08383612a24565b612a19578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050612a1e565b600090505b92915050565b600080836001016000848152602001908152602001600020541415905092915050565b612a52838383612e1f565b601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612adf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad6906141f2565b60405180910390fd5b601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612b6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b639061425e565b60405180910390fd5b505050565b505050565b6000612b9a436040518060600160405280603881526020016142e060389139612e24565b905060008463ffffffff16118015612c3857508063ffffffff16600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000600187612c0291906137f2565b63ffffffff1663ffffffff16815260200190815260200160002060000160009054906101000a900463ffffffff1663ffffffff16145b15612cb25781600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000600187612c8c91906137f2565b63ffffffff1663ffffffff16815260200190815260200160002060010181905550612dc8565b60405180604001604052808263ffffffff16815260200183815250600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008663ffffffff1663ffffffff16815260200190815260200160002060008201518160000160006101000a81548163ffffffff021916908363ffffffff16021790555060208201518160010155905050600184612d6a919061427e565b600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548163ffffffff021916908363ffffffff1602179055505b8473ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248484604051612e109291906142b6565b60405180910390a25050505050565b505050565b600064010000000083108290612e70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e679190612f3e565b60405180910390fd5b5082905092915050565b6000819050919050565b612e8d81612e7a565b82525050565b6000602082019050612ea86000830184612e84565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612ee8578082015181840152602081019050612ecd565b60008484015250505050565b6000601f19601f8301169050919050565b6000612f1082612eae565b612f1a8185612eb9565b9350612f2a818560208601612eca565b612f3381612ef4565b840191505092915050565b60006020820190508181036000830152612f588184612f05565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612f9082612f65565b9050919050565b612fa081612f85565b8114612fab57600080fd5b50565b600081359050612fbd81612f97565b92915050565b612fcc81612e7a565b8114612fd757600080fd5b50565b600081359050612fe981612fc3565b92915050565b6000806040838503121561300657613005612f60565b5b600061301485828601612fae565b925050602061302585828601612fda565b9150509250929050565b60008115159050919050565b6130448161302f565b82525050565b600060208201905061305f600083018461303b565b92915050565b6000819050919050565b61307881613065565b82525050565b6000602082019050613093600083018461306f565b92915050565b6000602082840312156130af576130ae612f60565b5b60006130bd84828501612fae565b91505092915050565b6000806000606084860312156130df576130de612f60565b5b60006130ed86828701612fae565b93505060206130fe86828701612fae565b925050604061310f86828701612fda565b9150509250925092565b600060ff82169050919050565b61312f81613119565b82525050565b600060208201905061314a6000830184613126565b92915050565b61315981612f85565b82525050565b60006020820190506131746000830184613150565b92915050565b6000602082840312156131905761318f612f60565b5b600061319e84828501612fda565b91505092915050565b600063ffffffff82169050919050565b6131c0816131a7565b82525050565b60006020820190506131db60008301846131b7565b92915050565b6131ea81613119565b81146131f557600080fd5b50565b600081359050613207816131e1565b92915050565b61321681613065565b811461322157600080fd5b50565b6000813590506132338161320d565b92915050565b60008060008060008060c0878903121561325657613255612f60565b5b600061326489828a01612fae565b965050602061327589828a01612fda565b955050604061328689828a01612fda565b945050606061329789828a016131f8565b93505060806132a889828a01613224565b92505060a06132b989828a01613224565b9150509295509295509295565b600080604083850312156132dd576132dc612f60565b5b60006132eb85828601612fae565b92505060206132fc85828601612fae565b9150509250929050565b61330f816131a7565b811461331a57600080fd5b50565b60008135905061332c81613306565b92915050565b6000806040838503121561334957613348612f60565b5b600061335785828601612fae565b92505060206133688582860161331d565b9150509250929050565b600060408201905061338760008301856131b7565b6133946020830184612e84565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806133e257607f821691505b6020821081036133f5576133f461339b565b5b50919050565b7f425343546f6b656e3a206163636f756e7420697320746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613457602583612eb9565b9150613462826133fb565b604082019050919050565b600060208201905081810360008301526134868161344a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006134c782612e7a565b91506134d283612e7a565b92508282019050808211156134ea576134e961348d565b5b92915050565b7f63616c6c6572206973206e6f7420746865206d696e7465720000000000000000600082015250565b6000613526601883612eb9565b9150613531826134f0565b602082019050919050565b6000602082019050818103600083015261355581613519565b9050919050565b7f425343546f6b656e3a206d696e7420616d6f756e742065786365656473205f6e60008201527f6577537570706c79000000000000000000000000000000000000000000000000602082015250565b60006135b8602883612eb9565b91506135c38261355c565b604082019050919050565b600060208201905081810360008301526135e7816135ab565b9050919050565b60006135f982612e7a565b915061360483612e7a565b925082820390508181111561361c5761361b61348d565b5b92915050565b7f425343546f6b656e3a20696e646578206f7574206f6620626f756e6473000000600082015250565b6000613658601d83612eb9565b915061366382613622565b602082019050919050565b600060208201905081810360008301526136878161364b565b9050919050565b60006060820190506136a36000830186613150565b6136b06020830185613150565b6136bd6040830184612e84565b949350505050565b6136ce8161302f565b81146136d957600080fd5b50565b6000815190506136eb816136c5565b92915050565b60006020828403121561370757613706612f60565b5b6000613715848285016136dc565b91505092915050565b600061372982612e7a565b915061373483612e7a565b925082820261374281612e7a565b915082820484148315176137595761375861348d565b5b5092915050565b7f425343546f6b656e3a3a6765745072696f72566f7465733a206e6f742079657460008201527f2064657465726d696e6564000000000000000000000000000000000000000000602082015250565b60006137bc602b83612eb9565b91506137c782613760565b604082019050919050565b600060208201905081810360008301526137eb816137af565b9050919050565b60006137fd826131a7565b9150613808836131a7565b9250828203905063ffffffff8111156138245761382361348d565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613864826131a7565b915061386f836131a7565b92508261387f5761387e61382a565b5b828204905092915050565b7f4f776e61626c6532537465703a2063616c6c6572206973206e6f74207468652060008201527f6e6577206f776e65720000000000000000000000000000000000000000000000602082015250565b60006138e6602983612eb9565b91506138f18261388a565b604082019050919050565b60006020820190508181036000830152613915816138d9565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613978602583612eb9565b91506139838261391c565b604082019050919050565b600060208201905081810360008301526139a78161396b565b9050919050565b60006080820190506139c3600083018761306f565b6139d0602083018661306f565b6139dd6040830185612e84565b6139ea6060830184613150565b95945050505050565b6000608082019050613a08600083018761306f565b613a156020830186613150565b613a226040830185612e84565b613a2f6060830184612e84565b95945050505050565b600081905092915050565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b6000613a79600283613a38565b9150613a8482613a43565b600282019050919050565b6000819050919050565b613aaa613aa582613065565b613a8f565b82525050565b6000613abb82613a6c565b9150613ac78285613a99565b602082019150613ad78284613a99565b6020820191508190509392505050565b6000608082019050613afc600083018761306f565b613b096020830186613126565b613b16604083018561306f565b613b23606083018461306f565b95945050505050565b7f425343546f6b656e3a3a64656c656761746542795369673a20696e76616c696460008201527f207369676e617475726500000000000000000000000000000000000000000000602082015250565b6000613b88602a83612eb9565b9150613b9382613b2c565b604082019050919050565b60006020820190508181036000830152613bb781613b7b565b9050919050565b6000613bc982612e7a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613bfb57613bfa61348d565b5b600182019050919050565b7f425343546f6b656e3a3a64656c656761746542795369673a20696e76616c696460008201527f206e6f6e63650000000000000000000000000000000000000000000000000000602082015250565b6000613c62602683612eb9565b9150613c6d82613c06565b604082019050919050565b60006020820190508181036000830152613c9181613c55565b9050919050565b7f425343546f6b656e3a3a64656c656761746542795369673a207369676e61747560008201527f7265206578706972656400000000000000000000000000000000000000000000602082015250565b6000613cf4602a83612eb9565b9150613cff82613c98565b604082019050919050565b60006020820190508181036000830152613d2381613ce7565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613d86602483612eb9565b9150613d9182613d2a565b604082019050919050565b60006020820190508181036000830152613db581613d79565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613e18602283612eb9565b9150613e2382613dbc565b604082019050919050565b60006020820190508181036000830152613e4781613e0b565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613e84602083612eb9565b9150613e8f82613e4e565b602082019050919050565b60006020820190508181036000830152613eb381613e77565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613ef0601d83612eb9565b9150613efb82613eba565b602082019050919050565b60006020820190508181036000830152613f1f81613ee3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613fe0602583612eb9565b9150613feb82613f84565b604082019050919050565b6000602082019050818103600083015261400f81613fd3565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614072602383612eb9565b915061407d82614016565b604082019050919050565b600060208201905081810360008301526140a181614065565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614104602683612eb9565b915061410f826140a8565b604082019050919050565b60006020820190508181036000830152614133816140f7565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000614170601f83612eb9565b915061417b8261413a565b602082019050919050565b6000602082019050818103600083015261419f81614163565b9050919050565b7f425343546f6b656e3a2066726f6d20697320626c61636b6c6973746564000000600082015250565b60006141dc601d83612eb9565b91506141e7826141a6565b602082019050919050565b6000602082019050818103600083015261420b816141cf565b9050919050565b7f425343546f6b656e3a20746f20697320626c61636b6c69737465640000000000600082015250565b6000614248601b83612eb9565b915061425382614212565b602082019050919050565b600060208201905081810360008301526142778161423b565b9050919050565b6000614289826131a7565b9150614294836131a7565b9250828201905063ffffffff8111156142b0576142af61348d565b5b92915050565b60006040820190506142cb6000830185612e84565b6142d86020830184612e84565b939250505056fe425343546f6b656e3a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d62657220657863656564732033322062697473a2646970667358221220e97dd973d27238ebb630be95a9739f9d5ea3a8ba009542dff57f96215ac79ccf64736f6c634300081100330000000000000000000000008c851d1a123ff703bd1f9dabe631b69902df5f970000000000000000000000000000000000000000000000000000000001406f400000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102325760003560e01c8063782d6fe111610130578063aa271e1a116100b8578063e7a324dc1161007c578063e7a324dc146106f1578063f1127ed81461070f578063f2fde38b14610740578063f9f92be41461075c578063fe575a871461077857610232565b8063aa271e1a14610627578063b4b5ea5714610657578063c3cda52014610687578063dd62ed3e146106a3578063e30c3978146106d357610232565b80638da5cb5b116100ff5780638da5cb5b1461055b57806395d89b4114610579578063983b2d5614610597578063a457c2d7146105c7578063a9059cbb146105f757610232565b8063782d6fe1146104d357806379ba5097146105035780637ecebe001461050d5780638941f1491461053d57610232565b806338c69849116101be5780636e631ded116101825780636e631ded146104315780636fcfff451461044d57806370a082311461047d578063715018a6146104ad57806375e3661e146104b757610232565b806338c698491461037b578063395093511461039957806340c10f19146103c95780635b7121f8146103e55780635c19a95c1461041557610232565b806320606b701161020557806320606b70146102c157806322f4596f146102df57806323338b88146102fd57806323b872dd1461032d578063313ce5671461035d57610232565b80630323aac71461023757806306fdde0314610255578063095ea7b31461027357806318160ddd146102a3575b600080fd5b61023f6107a8565b60405161024c9190612e93565b60405180910390f35b61025d6107b9565b60405161026a9190612f3e565b60405180910390f35b61028d60048036038101906102889190612fef565b61084b565b60405161029a919061304a565b60405180910390f35b6102ab61086e565b6040516102b89190612e93565b60405180910390f35b6102c9610878565b6040516102d6919061307e565b60405180910390f35b6102e761089c565b6040516102f49190612e93565b60405180910390f35b61031760048036038101906103129190613099565b6108a2565b604051610324919061304a565b60405180910390f35b610347600480360381019061034291906130c6565b61098d565b604051610354919061304a565b60405180910390f35b6103656109bc565b6040516103729190613135565b60405180910390f35b6103836109c5565b604051610390919061315f565b60405180910390f35b6103b360048036038101906103ae9190612fef565b6109eb565b6040516103c0919061304a565b60405180910390f35b6103e360048036038101906103de9190612fef565b610a22565b005b6103ff60048036038101906103fa919061317a565b610ad1565b60405161040c919061315f565b60405180910390f35b61042f600480360381019061042a9190613099565b610b43565b005b61044b6004803603810190610446919061317a565b610b50565b005b61046760048036038101906104629190613099565b610c52565b60405161047491906131c6565b60405180910390f35b61049760048036038101906104929190613099565b610c75565b6040516104a49190612e93565b60405180910390f35b6104b5610cbd565b005b6104d160048036038101906104cc9190613099565b610cd1565b005b6104ed60048036038101906104e89190612fef565b610d83565b6040516104fa9190612e93565b60405180910390f35b61050b611158565b005b61052760048036038101906105229190613099565b6111e5565b6040516105349190612e93565b60405180910390f35b6105456111fd565b6040516105529190612e93565b60405180910390f35b610563611203565b604051610570919061315f565b60405180910390f35b61058161122d565b60405161058e9190612f3e565b60405180910390f35b6105b160048036038101906105ac9190613099565b6112bf565b6040516105be919061304a565b60405180910390f35b6105e160048036038101906105dc9190612fef565b6113aa565b6040516105ee919061304a565b60405180910390f35b610611600480360381019061060c9190612fef565b611421565b60405161061e919061304a565b60405180910390f35b610641600480360381019061063c9190613099565b611444565b60405161064e919061304a565b60405180910390f35b610671600480360381019061066c9190613099565b611458565b60405161067e9190612e93565b60405180910390f35b6106a1600480360381019061069c9190613239565b611537565b005b6106bd60048036038101906106b891906132c6565b6117cb565b6040516106ca9190612e93565b60405180910390f35b6106db611852565b6040516106e8919061315f565b60405180910390f35b6106f961187c565b604051610706919061307e565b60405180910390f35b61072960048036038101906107249190613332565b6118a0565b604051610737929190613372565b60405180910390f35b61075a60048036038101906107559190613099565b6118e1565b005b61077660048036038101906107719190613099565b61198e565b005b610792600480360381019061078d9190613099565b611a40565b60405161079f919061304a565b60405180910390f35b60006107b4600b611b5c565b905090565b6060600380546107c8906133ca565b80601f01602080910402602001604051908101604052809291908181526020018280546107f4906133ca565b80156108415780601f1061081657610100808354040283529160200191610841565b820191906000526020600020905b81548152906001019060200180831161082457829003601f168201915b5050505050905090565b600080610856611b71565b9050610863818585611b79565b600191505092915050565b6000600254905090565b7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b600d5481565b60006108ac611d42565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361091b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109129061346d565b60405180910390fd5b610926600b83611dc0565b15610983578173ffffffffffffffffffffffffffffffffffffffff167fb21afb9ce9be0a676f8f317ff0ca072fb89a4f8ce2d1b6fe80f8755c14f1cb196000604051610972919061304a565b60405180910390a260019050610988565b600090505b919050565b600080610998611b71565b90506109a5858285611df0565b6109b0858585611e7c565b60019150509392505050565b60006012905090565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806109f6611b71565b9050610a17818585610a0885896117cb565b610a1291906134bc565b611b79565b600191505092915050565b610a2b33611444565b610a6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a619061353c565b60405180910390fd5b600e54811115610aaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa6906135ce565b60405180910390fd5b610ab98282611f55565b80600e54610ac791906135ee565b600e819055505050565b6000610adb611d42565b6001610ae56107a8565b610aef91906135ee565b821115610b31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b289061366e565b60405180910390fd5b610b3c600b83611fce565b9050919050565b610b4d3382611fe8565b50565b6000610b5a611b71565b9050600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd8261dead856040518463ffffffff1660e01b8152600401610bbd9392919061368e565b6020604051808303816000875af1158015610bdc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c0091906136f1565b50610c1781606484610c12919061371e565b611f55565b7f4b09df1be6ec3142aadf0b2f7c5b716c8e501b2998630571c605e23eae5a241482604051610c469190612e93565b60405180910390a15050565b60076020528060005260406000206000915054906101000a900463ffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610cc5611d42565b610ccf6000612159565b565b610cd9611d42565b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f6a12b3df6cba4203bd7fd06b816789f87de8c594299aed5717ae070fac781bac6000604051610d78919061304a565b60405180910390a250565b6000438210610dc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbe906137d2565b60405180910390fd5b6000600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900463ffffffff16905060008163ffffffff1603610e33576000915050611152565b82600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000600184610e8291906137f2565b63ffffffff1663ffffffff16815260200190815260200160002060000160009054906101000a900463ffffffff1663ffffffff1611610f2f57600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000600183610f0991906137f2565b63ffffffff1663ffffffff16815260200190815260200160002060010154915050611152565b82600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008063ffffffff16815260200190815260200160002060000160009054906101000a900463ffffffff1663ffffffff161115610fb0576000915050611152565b600080600183610fc091906137f2565b90505b8163ffffffff168163ffffffff1611156110ec57600060028383610fe791906137f2565b610ff19190613859565b82610ffc91906137f2565b90506000600660008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008363ffffffff1663ffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a900463ffffffff1663ffffffff1663ffffffff168152602001600182015481525050905086816000015163ffffffff16036110bb57806020015195505050505050611152565b86816000015163ffffffff1610156110d5578193506110e5565b6001826110e291906137f2565b92505b5050610fc3565b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008363ffffffff1663ffffffff1681526020019081526020016000206001015493505050505b92915050565b6000611162611b71565b90508073ffffffffffffffffffffffffffffffffffffffff16611183611852565b73ffffffffffffffffffffffffffffffffffffffff16146111d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d0906138fc565b60405180910390fd5b6111e281612159565b50565b60086020528060005260406000206000915090505481565b600e5481565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461123c906133ca565b80601f0160208091040260200160405190810160405280929190818152602001828054611268906133ca565b80156112b55780601f1061128a576101008083540402835291602001916112b5565b820191906000526020600020905b81548152906001019060200180831161129857829003601f168201915b5050505050905090565b60006112c9611d42565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611338576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132f9061346d565b60405180910390fd5b611343600b8361218a565b156113a0578173ffffffffffffffffffffffffffffffffffffffff167fb21afb9ce9be0a676f8f317ff0ca072fb89a4f8ce2d1b6fe80f8755c14f1cb19600160405161138f919061304a565b60405180910390a2600190506113a5565b600090505b919050565b6000806113b5611b71565b905060006113c382866117cb565b905083811015611408576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ff9061398e565b60405180910390fd5b6114158286868403611b79565b60019250505092915050565b60008061142c611b71565b9050611439818585611e7c565b600191505092915050565b6000611451600b836121ba565b9050919050565b600080600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900463ffffffff16905060008163ffffffff16116114c257600061152f565b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600060018361151091906137f2565b63ffffffff1663ffffffff168152602001908152602001600020600101545b915050919050565b60007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a8666115626107b9565b805190602001206115716121ea565b3060405160200161158594939291906139ae565b60405160208183030381529060405280519060200120905060007fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf8888886040516020016115d694939291906139f3565b60405160208183030381529060405280519060200120905060008282604051602001611603929190613ab0565b6040516020818303038152906040528051906020012090506000600182888888604051600081526020016040526040516116409493929190613ae7565b6020604051602081039080840390855afa158015611662573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036116dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d490613b9e565b60405180910390fd5b600860008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061172d90613bbe565b919050558914611772576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176990613c78565b60405180910390fd5b874211156117b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ac90613d0a565b60405180910390fd5b6117bf818b611fe8565b50505050505050505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b6006602052816000526040600020602052806000526040600020600091509150508060000160009054906101000a900463ffffffff16908060010154905082565b6118e9611d42565b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16611949611203565b73ffffffffffffffffffffffffffffffffffffffff167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b611996611d42565b6001601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f6a12b3df6cba4203bd7fd06b816789f87de8c594299aed5717ae070fac781bac6001604051611a35919061304a565b60405180910390a250565b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000611b6a826000016121f7565b9050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611be8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bdf90613d9c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4e90613e2e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611d359190612e93565b60405180910390a3505050565b611d4a611b71565b73ffffffffffffffffffffffffffffffffffffffff16611d68611203565b73ffffffffffffffffffffffffffffffffffffffff1614611dbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db590613e9a565b60405180910390fd5b565b6000611de8836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612208565b905092915050565b6000611dfc84846117cb565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611e765781811015611e68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5f90613f06565b60405180910390fd5b611e758484848403611b79565b5b50505050565b611e8783838361231c565b611f50600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683612592565b505050565b611f5f8282612833565b611fca6000600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683612592565b5050565b6000611fdd8360000183612989565b60001c905092915050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600061205784610c75565b905082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506120e2828483612592565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f60405160405180910390a450505050565b600a60006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905561218781611a96565b50565b60006121b2836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6129b4565b905092915050565b60006121e2836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612a24565b905092915050565b6000804690508091505090565b600081600001805490509050919050565b6000808360010160008481526020019081526020016000205490506000811461231057600060018261223a91906135ee565b905060006001866000018054905061225291906135ee565b90508181146122c157600086600001828154811061227357612272613f26565b5b906000526020600020015490508087600001848154811061229757612296613f26565b5b90600052602060002001819055508387600101600083815260200190815260200160002081905550505b856000018054806122d5576122d4613f55565b5b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050612316565b60009150505b92915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361238b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238290613ff6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036123fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f190614088565b60405180910390fd5b612405838383612a47565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561248b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124829061411a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516125799190612e93565b60405180910390a361258c848484612b71565b50505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156125ce5750600081115b1561282e57600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612700576000600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900463ffffffff1690506000808263ffffffff16116126715760006126de565b600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006001846126bf91906137f2565b63ffffffff1663ffffffff168152602001908152602001600020600101545b9050600083826126ee91906135ee565b90506126fc86848484612b76565b5050505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461282d576000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900463ffffffff1690506000808263ffffffff161161279e57600061280b565b600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006001846127ec91906137f2565b63ffffffff1663ffffffff168152602001908152602001600020600101545b90506000838261281b91906134bc565b905061282985848484612b76565b5050505b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036128a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289990614186565b60405180910390fd5b6128ae60008383612a47565b80600260008282546128c091906134bc565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516129719190612e93565b60405180910390a361298560008383612b71565b5050565b60008260000182815481106129a1576129a0613f26565b5b9060005260206000200154905092915050565b60006129c08383612a24565b612a19578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050612a1e565b600090505b92915050565b600080836001016000848152602001908152602001600020541415905092915050565b612a52838383612e1f565b601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612adf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad6906141f2565b60405180910390fd5b601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612b6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b639061425e565b60405180910390fd5b505050565b505050565b6000612b9a436040518060600160405280603881526020016142e060389139612e24565b905060008463ffffffff16118015612c3857508063ffffffff16600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000600187612c0291906137f2565b63ffffffff1663ffffffff16815260200190815260200160002060000160009054906101000a900463ffffffff1663ffffffff16145b15612cb25781600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000600187612c8c91906137f2565b63ffffffff1663ffffffff16815260200190815260200160002060010181905550612dc8565b60405180604001604052808263ffffffff16815260200183815250600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008663ffffffff1663ffffffff16815260200190815260200160002060008201518160000160006101000a81548163ffffffff021916908363ffffffff16021790555060208201518160010155905050600184612d6a919061427e565b600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548163ffffffff021916908363ffffffff1602179055505b8473ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248484604051612e109291906142b6565b60405180910390a25050505050565b505050565b600064010000000083108290612e70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e679190612f3e565b60405180910390fd5b5082905092915050565b6000819050919050565b612e8d81612e7a565b82525050565b6000602082019050612ea86000830184612e84565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612ee8578082015181840152602081019050612ecd565b60008484015250505050565b6000601f19601f8301169050919050565b6000612f1082612eae565b612f1a8185612eb9565b9350612f2a818560208601612eca565b612f3381612ef4565b840191505092915050565b60006020820190508181036000830152612f588184612f05565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612f9082612f65565b9050919050565b612fa081612f85565b8114612fab57600080fd5b50565b600081359050612fbd81612f97565b92915050565b612fcc81612e7a565b8114612fd757600080fd5b50565b600081359050612fe981612fc3565b92915050565b6000806040838503121561300657613005612f60565b5b600061301485828601612fae565b925050602061302585828601612fda565b9150509250929050565b60008115159050919050565b6130448161302f565b82525050565b600060208201905061305f600083018461303b565b92915050565b6000819050919050565b61307881613065565b82525050565b6000602082019050613093600083018461306f565b92915050565b6000602082840312156130af576130ae612f60565b5b60006130bd84828501612fae565b91505092915050565b6000806000606084860312156130df576130de612f60565b5b60006130ed86828701612fae565b93505060206130fe86828701612fae565b925050604061310f86828701612fda565b9150509250925092565b600060ff82169050919050565b61312f81613119565b82525050565b600060208201905061314a6000830184613126565b92915050565b61315981612f85565b82525050565b60006020820190506131746000830184613150565b92915050565b6000602082840312156131905761318f612f60565b5b600061319e84828501612fda565b91505092915050565b600063ffffffff82169050919050565b6131c0816131a7565b82525050565b60006020820190506131db60008301846131b7565b92915050565b6131ea81613119565b81146131f557600080fd5b50565b600081359050613207816131e1565b92915050565b61321681613065565b811461322157600080fd5b50565b6000813590506132338161320d565b92915050565b60008060008060008060c0878903121561325657613255612f60565b5b600061326489828a01612fae565b965050602061327589828a01612fda565b955050604061328689828a01612fda565b945050606061329789828a016131f8565b93505060806132a889828a01613224565b92505060a06132b989828a01613224565b9150509295509295509295565b600080604083850312156132dd576132dc612f60565b5b60006132eb85828601612fae565b92505060206132fc85828601612fae565b9150509250929050565b61330f816131a7565b811461331a57600080fd5b50565b60008135905061332c81613306565b92915050565b6000806040838503121561334957613348612f60565b5b600061335785828601612fae565b92505060206133688582860161331d565b9150509250929050565b600060408201905061338760008301856131b7565b6133946020830184612e84565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806133e257607f821691505b6020821081036133f5576133f461339b565b5b50919050565b7f425343546f6b656e3a206163636f756e7420697320746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613457602583612eb9565b9150613462826133fb565b604082019050919050565b600060208201905081810360008301526134868161344a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006134c782612e7a565b91506134d283612e7a565b92508282019050808211156134ea576134e961348d565b5b92915050565b7f63616c6c6572206973206e6f7420746865206d696e7465720000000000000000600082015250565b6000613526601883612eb9565b9150613531826134f0565b602082019050919050565b6000602082019050818103600083015261355581613519565b9050919050565b7f425343546f6b656e3a206d696e7420616d6f756e742065786365656473205f6e60008201527f6577537570706c79000000000000000000000000000000000000000000000000602082015250565b60006135b8602883612eb9565b91506135c38261355c565b604082019050919050565b600060208201905081810360008301526135e7816135ab565b9050919050565b60006135f982612e7a565b915061360483612e7a565b925082820390508181111561361c5761361b61348d565b5b92915050565b7f425343546f6b656e3a20696e646578206f7574206f6620626f756e6473000000600082015250565b6000613658601d83612eb9565b915061366382613622565b602082019050919050565b600060208201905081810360008301526136878161364b565b9050919050565b60006060820190506136a36000830186613150565b6136b06020830185613150565b6136bd6040830184612e84565b949350505050565b6136ce8161302f565b81146136d957600080fd5b50565b6000815190506136eb816136c5565b92915050565b60006020828403121561370757613706612f60565b5b6000613715848285016136dc565b91505092915050565b600061372982612e7a565b915061373483612e7a565b925082820261374281612e7a565b915082820484148315176137595761375861348d565b5b5092915050565b7f425343546f6b656e3a3a6765745072696f72566f7465733a206e6f742079657460008201527f2064657465726d696e6564000000000000000000000000000000000000000000602082015250565b60006137bc602b83612eb9565b91506137c782613760565b604082019050919050565b600060208201905081810360008301526137eb816137af565b9050919050565b60006137fd826131a7565b9150613808836131a7565b9250828203905063ffffffff8111156138245761382361348d565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613864826131a7565b915061386f836131a7565b92508261387f5761387e61382a565b5b828204905092915050565b7f4f776e61626c6532537465703a2063616c6c6572206973206e6f74207468652060008201527f6e6577206f776e65720000000000000000000000000000000000000000000000602082015250565b60006138e6602983612eb9565b91506138f18261388a565b604082019050919050565b60006020820190508181036000830152613915816138d9565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613978602583612eb9565b91506139838261391c565b604082019050919050565b600060208201905081810360008301526139a78161396b565b9050919050565b60006080820190506139c3600083018761306f565b6139d0602083018661306f565b6139dd6040830185612e84565b6139ea6060830184613150565b95945050505050565b6000608082019050613a08600083018761306f565b613a156020830186613150565b613a226040830185612e84565b613a2f6060830184612e84565b95945050505050565b600081905092915050565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b6000613a79600283613a38565b9150613a8482613a43565b600282019050919050565b6000819050919050565b613aaa613aa582613065565b613a8f565b82525050565b6000613abb82613a6c565b9150613ac78285613a99565b602082019150613ad78284613a99565b6020820191508190509392505050565b6000608082019050613afc600083018761306f565b613b096020830186613126565b613b16604083018561306f565b613b23606083018461306f565b95945050505050565b7f425343546f6b656e3a3a64656c656761746542795369673a20696e76616c696460008201527f207369676e617475726500000000000000000000000000000000000000000000602082015250565b6000613b88602a83612eb9565b9150613b9382613b2c565b604082019050919050565b60006020820190508181036000830152613bb781613b7b565b9050919050565b6000613bc982612e7a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613bfb57613bfa61348d565b5b600182019050919050565b7f425343546f6b656e3a3a64656c656761746542795369673a20696e76616c696460008201527f206e6f6e63650000000000000000000000000000000000000000000000000000602082015250565b6000613c62602683612eb9565b9150613c6d82613c06565b604082019050919050565b60006020820190508181036000830152613c9181613c55565b9050919050565b7f425343546f6b656e3a3a64656c656761746542795369673a207369676e61747560008201527f7265206578706972656400000000000000000000000000000000000000000000602082015250565b6000613cf4602a83612eb9565b9150613cff82613c98565b604082019050919050565b60006020820190508181036000830152613d2381613ce7565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613d86602483612eb9565b9150613d9182613d2a565b604082019050919050565b60006020820190508181036000830152613db581613d79565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613e18602283612eb9565b9150613e2382613dbc565b604082019050919050565b60006020820190508181036000830152613e4781613e0b565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613e84602083612eb9565b9150613e8f82613e4e565b602082019050919050565b60006020820190508181036000830152613eb381613e77565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613ef0601d83612eb9565b9150613efb82613eba565b602082019050919050565b60006020820190508181036000830152613f1f81613ee3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613fe0602583612eb9565b9150613feb82613f84565b604082019050919050565b6000602082019050818103600083015261400f81613fd3565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614072602383612eb9565b915061407d82614016565b604082019050919050565b600060208201905081810360008301526140a181614065565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614104602683612eb9565b915061410f826140a8565b604082019050919050565b60006020820190508181036000830152614133816140f7565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000614170601f83612eb9565b915061417b8261413a565b602082019050919050565b6000602082019050818103600083015261419f81614163565b9050919050565b7f425343546f6b656e3a2066726f6d20697320626c61636b6c6973746564000000600082015250565b60006141dc601d83612eb9565b91506141e7826141a6565b602082019050919050565b6000602082019050818103600083015261420b816141cf565b9050919050565b7f425343546f6b656e3a20746f20697320626c61636b6c69737465640000000000600082015250565b6000614248601b83612eb9565b915061425382614212565b602082019050919050565b600060208201905081810360008301526142778161423b565b9050919050565b6000614289826131a7565b9150614294836131a7565b9250828201905063ffffffff8111156142b0576142af61348d565b5b92915050565b60006040820190506142cb6000830185612e84565b6142d86020830184612e84565b939250505056fe425343546f6b656e3a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d62657220657863656564732033322062697473a2646970667358221220e97dd973d27238ebb630be95a9739f9d5ea3a8ba009542dff57f96215ac79ccf64736f6c63430008110033

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

0000000000000000000000008c851d1a123ff703bd1f9dabe631b69902df5f970000000000000000000000000000000000000000000000000000000001406f400000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : ancestor (address): 0x8C851d1a123Ff703BD1f9dabe631b69902Df5f97
Arg [1] : ancestorMaxSupply (uint256): 21000000
Arg [2] : newSupply (uint256): 0

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000008c851d1a123ff703bd1f9dabe631b69902df5f97
Arg [1] : 0000000000000000000000000000000000000000000000000000000001406f40
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

8513:3260:7:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10145:111;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2137:98:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4423:197;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3234:106;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;829:122:7;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8670:25;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9817:318;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5182:256:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3083:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8733:24:7;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5833:234:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9262:221:7;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10403:217;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1926:102;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10777:242;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;706:49;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3398:125:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1817:101:5;;;:::i;:::-;;11293:148:7;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4484:1225;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1734:212:6;;;:::i;:::-;;1245:39:7;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8702:25;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1194:85:5;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2348:102:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9493:314:7;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6554:427:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3719:189;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10266:127:7;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3822:236;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2455:1169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3966:149:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;847:99:6;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1046:117:7;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;566:70;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;1139:178:6;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11143:144:7;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11025:112;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10145:111;10193:7;10219:30;10240:8;10219:20;:30::i;:::-;10212:37;;10145:111;:::o;2137:98:1:-;2191:13;2223:5;2216:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2137:98;:::o;4423:197::-;4506:4;4522:13;4538:12;:10;:12::i;:::-;4522:28;;4560:32;4569:5;4576:7;4585:6;4560:8;:32::i;:::-;4609:4;4602:11;;;4423:197;;;;:::o;3234:106::-;3295:7;3321:12;;3314:19;;3234:106;:::o;829:122:7:-;871:80;829:122;:::o;8670:25::-;;;;:::o;9817:318::-;9881:4;1087:13:5;:11;:13::i;:::-;9924:1:7::1;9905:21;;:7;:21;;::::0;9897:71:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;9982:39;10003:8;10013:7;9982:20;:39::i;:::-;9978:129;;;10056:7;10042:29;;;10065:5;10042:29;;;;;;:::i;:::-;;;;;;;;10092:4;10085:11;;;;9978:129;10123:5;10116:12;;1110:1:5;9817:318:7::0;;;:::o;5182:256:1:-;5279:4;5295:15;5313:12;:10;:12::i;:::-;5295:30;;5335:38;5351:4;5357:7;5366:6;5335:15;:38::i;:::-;5383:27;5393:4;5399:2;5403:6;5383:9;:27::i;:::-;5427:4;5420:11;;;5182:256;;;;;:::o;3083:91::-;3141:5;3165:2;3158:9;;3083:91;:::o;8733:24:7:-;;;;;;;;;;;;;:::o;5833:234:1:-;5921:4;5937:13;5953:12;:10;:12::i;:::-;5937:28;;5975:64;5984:5;5991:7;6028:10;6000:25;6010:5;6017:7;6000:9;:25::i;:::-;:38;;;;:::i;:::-;5975:8;:64::i;:::-;6056:4;6049:11;;;5833:234;;;;:::o;9262:221:7:-;10704:20;10713:10;10704:8;:20::i;:::-;10696:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;9352:10:::1;;9342:6;:20;;9334:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;9417:17;9423:2;9427:6;9417:5;:17::i;:::-;9470:6;9457:10;;:19;;;;:::i;:::-;9444:10;:32;;;;9262:221:::0;;:::o;10403:217::-;10471:7;1087:13:5;:11;:13::i;:::-;10527:1:7::1;10507:17;:15;:17::i;:::-;:21;;;;:::i;:::-;10497:6;:31;;10489:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;10579:34;10596:8;10606:6;10579:16;:34::i;:::-;10572:41;;10403:217:::0;;;:::o;1926:102::-;1989:32;1999:10;2011:9;1989;:32::i;:::-;1926:102;:::o;10777:242::-;10834:15;10852:12;:10;:12::i;:::-;10834:30;;10881:9;;;;;;;;;;;10874:30;;;10905:7;10922:6;10931;10874:64;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;10948:28;10954:7;10972:3;10963:6;:12;;;;:::i;:::-;10948:5;:28::i;:::-;10991:21;11005:6;10991:21;;;;;;:::i;:::-;;;;;;;;10824:195;10777:242;:::o;706:49::-;;;;;;;;;;;;;;;;;;;;;;:::o;3398:125:1:-;3472:7;3498:9;:18;3508:7;3498:18;;;;;;;;;;;;;;;;3491:25;;3398:125;;;:::o;1817:101:5:-;1087:13;:11;:13::i;:::-;1881:30:::1;1908:1;1881:18;:30::i;:::-;1817:101::o:0;11293:148:7:-;1087:13:5;:11;:13::i;:::-;11382:5:7::1;11360:10;:19;11371:7;11360:19;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;11419:7;11402:32;;;11428:5;11402:32;;;;;;:::i;:::-;;;;;;;;11293:148:::0;:::o;4484:1225::-;4577:7;4622:12;4608:11;:26;4600:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;4697:19;4719:14;:23;4734:7;4719:23;;;;;;;;;;;;;;;;;;;;;;;;;4697:45;;4772:1;4756:12;:17;;;4752:56;;4796:1;4789:8;;;;;4752:56;4921:11;4869;:20;4881:7;4869:20;;;;;;;;;;;;;;;:38;4905:1;4890:12;:16;;;;:::i;:::-;4869:38;;;;;;;;;;;;;;;:48;;;;;;;;;;;;:63;;;4865:145;;4955:11;:20;4967:7;4955:20;;;;;;;;;;;;;;;:38;4991:1;4976:12;:16;;;;:::i;:::-;4955:38;;;;;;;;;;;;;;;:44;;;4948:51;;;;;4865:145;5108:11;5072;:20;5084:7;5072:20;;;;;;;;;;;;;;;:23;5093:1;5072:23;;;;;;;;;;;;;:33;;;;;;;;;;;;:47;;;5068:86;;;5142:1;5135:8;;;;;5068:86;5168:12;5194;5224:1;5209:12;:16;;;;:::i;:::-;5194:31;;5235:418;5250:5;5242:13;;:5;:13;;;5235:418;;;5271:13;5313:1;5304:5;5296;:13;;;;:::i;:::-;5295:19;;;;:::i;:::-;5287:5;:27;;;;:::i;:::-;5271:43;;5355:20;5378:11;:20;5390:7;5378:20;;;;;;;;;;;;;;;:28;5399:6;5378:28;;;;;;;;;;;;;;;5355:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5440:11;5424:2;:12;;;:27;;;5420:223;;5478:2;:8;;;5471:15;;;;;;;;;5420:223;5526:11;5511:2;:12;;;:26;;;5507:136;;;5565:6;5557:14;;5507:136;;;5627:1;5618:6;:10;;;;:::i;:::-;5610:18;;5507:136;5257:396;;5235:418;;;5669:11;:20;5681:7;5669:20;;;;;;;;;;;;;;;:27;5690:5;5669:27;;;;;;;;;;;;;;;:33;;;5662:40;;;;;4484:1225;;;;;:::o;1734:212:6:-;1786:14;1803:12;:10;:12::i;:::-;1786:29;;1851:6;1833:24;;:14;:12;:14::i;:::-;:24;;;1825:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;1913:26;1932:6;1913:18;:26::i;:::-;1776:170;1734:212::o;1245:39:7:-;;;;;;;;;;;;;;;;;:::o;8702:25::-;;;;:::o;1194:85:5:-;1240:7;1266:6;;;;;;;;;;;1259:13;;1194:85;:::o;2348:102:1:-;2404:13;2436:7;2429:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2348:102;:::o;9493:314:7:-;9557:4;1087:13:5;:11;:13::i;:::-;9600:1:7::1;9581:21;;:7;:21;;::::0;9573:71:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;9658:36;9676:8;9686:7;9658:17;:36::i;:::-;9654:125;;;9729:7;9715:28;;;9738:4;9715:28;;;;;;:::i;:::-;;;;;;;;9764:4;9757:11;;;;9654:125;9795:5;9788:12;;1110:1:5;9493:314:7::0;;;:::o;6554:427:1:-;6647:4;6663:13;6679:12;:10;:12::i;:::-;6663:28;;6701:24;6728:25;6738:5;6745:7;6728:9;:25::i;:::-;6701:52;;6791:15;6771:16;:35;;6763:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;6882:60;6891:5;6898:7;6926:15;6907:16;:34;6882:8;:60::i;:::-;6970:4;6963:11;;;;6554:427;;;;:::o;3719:189::-;3798:4;3814:13;3830:12;:10;:12::i;:::-;3814:28;;3852;3862:5;3869:2;3873:6;3852:9;:28::i;:::-;3897:4;3890:11;;;3719:189;;;;:::o;10266:127:7:-;10322:4;10345:41;10368:8;10378:7;10345:22;:41::i;:::-;10338:48;;10266:127;;;:::o;3822:236::-;3899:7;3922:19;3944:14;:23;3959:7;3944:23;;;;;;;;;;;;;;;;;;;;;;;;;3922:45;;3999:1;3984:12;:16;;;:67;;4050:1;3984:67;;;4003:11;:20;4015:7;4003:20;;;;;;;;;;;;;;;:38;4039:1;4024:12;:16;;;;:::i;:::-;4003:38;;;;;;;;;;;;;;;:44;;;3984:67;3977:74;;;3822:236;;;:::o;2455:1169::-;2634:23;871:80;2760:6;:4;:6::i;:::-;2744:24;;;;;;2786:12;:10;:12::i;:::-;2824:4;2683:160;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2660:193;;;;;;2634:219;;2868:18;1092:71;2977:9;3004:5;3027:6;2912:135;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2889:168;;;;;;2868:189;;3072:14;3174:15;3207:10;3112:119;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3089:152;;;;;;3072:169;;3256:17;3276:26;3286:6;3294:1;3297;3300;3276:26;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3256:46;;3341:1;3320:23;;:9;:23;;;3312:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;3417:6;:17;3424:9;3417:17;;;;;;;;;;;;;;;;:19;;;;;;;;;:::i;:::-;;;;;3408:5;:28;3400:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;3516:6;3497:15;:25;;3489:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;3586:31;3596:9;3607;3586;:31::i;:::-;3579:38;;;;2455:1169;;;;;;:::o;3966:149:1:-;4055:7;4081:11;:18;4093:5;4081:18;;;;;;;;;;;;;;;:27;4100:7;4081:27;;;;;;;;;;;;;;;;4074:34;;3966:149;;;;:::o;847:99:6:-;900:7;926:13;;;;;;;;;;;919:20;;847:99;:::o;1046:117:7:-;1092:71;1046:117;:::o;566:70::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1139:178:6:-;1087:13:5;:11;:13::i;:::-;1244:8:6::1;1228:13;;:24;;;;;;;;;;;;;;;;;;1301:8;1267:43;;1292:7;:5;:7::i;:::-;1267:43;;;;;;;;;;;;1139:178:::0;:::o;11143:144:7:-;1087:13:5;:11;:13::i;:::-;11230:4:7::1;11208:10;:19;11219:7;11208:19;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;11266:7;11249:31;;;11275:4;11249:31;;;;;;:::i;:::-;;;;;;;;11143:144:::0;:::o;11025:112::-;11088:4;11111:10;:19;11122:7;11111:19;;;;;;;;;;;;;;;;;;;;;;;;;11104:26;;11025:112;;;:::o;2419:187:5:-;2492:16;2511:6;;;;;;;;;;;2492:25;;2536:8;2527:6;;:17;;;;;;;;;;;;;;;;;;2590:8;2559:40;;2580:8;2559:40;;;;;;;;;;;;2482:124;2419:187;:::o;9106:115:2:-;9169:7;9195:19;9203:3;:10;;9195:7;:19::i;:::-;9188:26;;9106:115;;;:::o;640:96:0:-;693:7;719:10;712:17;;640:96;:::o;10436:340:1:-;10554:1;10537:19;;:5;:19;;;10529:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10634:1;10615:21;;:7;:21;;;10607:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10716:6;10686:11;:18;10698:5;10686:18;;;;;;;;;;;;;;;:27;10705:7;10686:27;;;;;;;;;;;;;;;:36;;;;10753:7;10737:32;;10746:5;10737:32;;;10762:6;10737:32;;;;;;:::i;:::-;;;;;;;;10436:340;;;:::o;1352:130:5:-;1426:12;:10;:12::i;:::-;1415:23;;:7;:5;:7::i;:::-;:23;;;1407:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1352:130::o;8623:156:2:-;8696:4;8719:53;8727:3;:10;;8763:5;8747:23;;8739:32;;8719:7;:53::i;:::-;8712:60;;8623:156;;;;:::o;11057:411:1:-;11157:24;11184:25;11194:5;11201:7;11184:9;:25::i;:::-;11157:52;;11243:17;11223:16;:37;11219:243;;11304:6;11284:16;:26;;11276:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11386:51;11395:5;11402:7;11430:6;11411:16;:25;11386:8;:51::i;:::-;11219:243;11147:321;11057:411;;;:::o;1557:230:7:-;1663:42;1679:6;1687:9;1698:6;1663:15;:42::i;:::-;1715:65;1730:10;:18;1741:6;1730:18;;;;;;;;;;;;;;;;;;;;;;;;;1750:10;:21;1761:9;1750:21;;;;;;;;;;;;;;;;;;;;;;;;;1773:6;1715:14;:65::i;:::-;1557:230;;;:::o;1322:228::-;1406:28;1418:7;1427:6;1406:11;:28::i;:::-;1488:55;1511:1;1515:10;:19;1526:7;1515:19;;;;;;;;;;;;;;;;;;;;;;;;;1536:6;1488:14;:55::i;:::-;1322:228;;:::o;9563:156:2:-;9637:7;9687:22;9691:3;:10;;9703:5;9687:3;:22::i;:::-;9679:31;;9656:56;;9563:156;;;;:::o;5719:435:7:-;5803:23;5829:10;:21;5840:9;5829:21;;;;;;;;;;;;;;;;;;;;;;;;;5803:47;;5860:24;5887:20;5897:9;5887;:20::i;:::-;5860:47;;5989:9;5965:10;:21;5976:9;5965:21;;;;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;6013:60;6028:15;6045:9;6056:16;6013:14;:60::i;:::-;6137:9;6093:54;;6120:15;6093:54;;6109:9;6093:54;;;;;;;;;;;;5793:361;;5719:435;;:::o;1501:153:6:-;1590:13;;1583:20;;;;;;;;;;;1613:34;1638:8;1613:24;:34::i;:::-;1501:153;:::o;8305:150:2:-;8375:4;8398:50;8403:3;:10;;8439:5;8423:23;;8415:32;;8398:4;:50::i;:::-;8391:57;;8305:150;;;;:::o;8860:165::-;8940:4;8963:55;8973:3;:10;;9009:5;8993:23;;8985:32;;8963:9;:55::i;:::-;8956:62;;8860:165;;;;:::o;7973:154:7:-;8018:4;8034:15;8081:9;8070:20;;8113:7;8106:14;;;7973:154;:::o;4463:107:2:-;4519:7;4545:3;:11;;:18;;;;4538:25;;4463:107;;;:::o;2786:1388::-;2852:4;2968:18;2989:3;:12;;:19;3002:5;2989:19;;;;;;;;;;;;2968:40;;3037:1;3023:10;:15;3019:1149;;3392:21;3429:1;3416:10;:14;;;;:::i;:::-;3392:38;;3444:17;3485:1;3464:3;:11;;:18;;;;:22;;;;:::i;:::-;3444:42;;3518:13;3505:9;:26;3501:398;;3551:17;3571:3;:11;;3583:9;3571:22;;;;;;;;:::i;:::-;;;;;;;;;;3551:42;;3722:9;3693:3;:11;;3705:13;3693:26;;;;;;;;:::i;:::-;;;;;;;;;:38;;;;3831:10;3805:3;:12;;:23;3818:9;3805:23;;;;;;;;;;;:36;;;;3533:366;3501:398;3977:3;:11;;:17;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;4069:3;:12;;:19;4082:5;4069:19;;;;;;;;;;;4062:26;;;4110:4;4103:11;;;;;;;3019:1149;4152:5;4145:12;;;2786:1388;;;;;:::o;7435:788:1:-;7547:1;7531:18;;:4;:18;;;7523:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7623:1;7609:16;;:2;:16;;;7601:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;7676:38;7697:4;7703:2;7707:6;7676:20;:38::i;:::-;7725:19;7747:9;:15;7757:4;7747:15;;;;;;;;;;;;;;;;7725:37;;7795:6;7780:11;:21;;7772:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;7910:6;7896:11;:20;7878:9;:15;7888:4;7878:15;;;;;;;;;;;;;;;:38;;;;8110:6;8093:9;:13;8103:2;8093:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;8157:2;8142:26;;8151:4;8142:26;;;8161:6;8142:26;;;;;;:::i;:::-;;;;;;;;8179:37;8199:4;8205:2;8209:6;8179:19;:37::i;:::-;7513:710;7435:788;;;:::o;6164:927:7:-;6269:6;6259:16;;:6;:16;;;;:30;;;;;6288:1;6279:6;:10;6259:30;6255:830;;;6327:1;6309:20;;:6;:20;;;6305:376;;6396:16;6415:14;:22;6430:6;6415:22;;;;;;;;;;;;;;;;;;;;;;;;;6396:41;;6455:17;6487:1;6475:9;:13;;;:60;;6534:1;6475:60;;;6491:11;:19;6503:6;6491:19;;;;;;;;;;;;;;;:34;6523:1;6511:9;:13;;;;:::i;:::-;6491:34;;;;;;;;;;;;;;;:40;;;6475:60;6455:80;;6553:17;6585:6;6573:9;:18;;;;:::i;:::-;6553:38;;6609:57;6626:6;6634:9;6645;6656;6609:16;:57::i;:::-;6331:350;;;6305:376;6721:1;6703:20;;:6;:20;;;6699:376;;6790:16;6809:14;:22;6824:6;6809:22;;;;;;;;;;;;;;;;;;;;;;;;;6790:41;;6849:17;6881:1;6869:9;:13;;;:60;;6928:1;6869:60;;;6885:11;:19;6897:6;6885:19;;;;;;;;;;;;;;;:34;6917:1;6905:9;:13;;;;:::i;:::-;6885:34;;;;;;;;;;;;;;;:40;;;6869:60;6849:80;;6947:17;6979:6;6967:9;:18;;;;:::i;:::-;6947:38;;7003:57;7020:6;7028:9;7039;7050;7003:16;:57::i;:::-;6725:350;;;6699:376;6255:830;6164:927;;;:::o;8499:535:1:-;8601:1;8582:21;;:7;:21;;;8574:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;8650:49;8679:1;8683:7;8692:6;8650:20;:49::i;:::-;8726:6;8710:12;;:22;;;;;;;:::i;:::-;;;;;;;;8900:6;8878:9;:18;8888:7;8878:18;;;;;;;;;;;;;;;;:28;;;;;;;;;;;8952:7;8931:37;;8948:1;8931:37;;;8961:6;8931:37;;;;;;:::i;:::-;;;;;;;;8979:48;9007:1;9011:7;9020:6;8979:19;:48::i;:::-;8499:535;;:::o;4912:118:2:-;4979:7;5005:3;:11;;5017:5;5005:18;;;;;;;;:::i;:::-;;;;;;;;;;4998:25;;4912:118;;;;:::o;2214:404::-;2277:4;2298:21;2308:3;2313:5;2298:9;:21::i;:::-;2293:319;;2335:3;:11;;2352:5;2335:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2515:3;:11;;:18;;;;2493:3;:12;;:19;2506:5;2493:19;;;;;;;;;;;:40;;;;2554:4;2547:11;;;;2293:319;2596:5;2589:12;;2214:404;;;;;:::o;4255:127::-;4328:4;4374:1;4351:3;:12;;:19;4364:5;4351:19;;;;;;;;;;;;:24;;4344:31;;4255:127;;;;:::o;11447:324:7:-;11585:44;11612:4;11618:2;11622:6;11585:26;:44::i;:::-;11649:10;:16;11660:4;11649:16;;;;;;;;;;;;;;;;;;;;;;;;;11648:17;11640:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;11718:10;:14;11729:2;11718:14;;;;;;;;;;;;;;;;;;;;;;;;;11717:15;11709:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;11447:324;;;:::o;12731:90:1:-;;;;:::o;7101:694:7:-;7268:18;7289:80;7296:12;7289:80;;;;;;;;;;;;;;;;;:6;:80::i;:::-;7268:101;;7403:1;7388:12;:16;;;:85;;;;;7462:11;7408:65;;:11;:22;7420:9;7408:22;;;;;;;;;;;;;;;:40;7446:1;7431:12;:16;;;;:::i;:::-;7408:40;;;;;;;;;;;;;;;:50;;;;;;;;;;;;:65;;;7388:85;7384:334;;;7538:8;7489:11;:22;7501:9;7489:22;;;;;;;;;;;;;;;:40;7527:1;7512:12;:16;;;;:::i;:::-;7489:40;;;;;;;;;;;;;;;:46;;:57;;;;7384:334;;;7616:33;;;;;;;;7627:11;7616:33;;;;;;7640:8;7616:33;;;7577:11;:22;7589:9;7577:22;;;;;;;;;;;;;;;:36;7600:12;7577:36;;;;;;;;;;;;;;;:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7706:1;7691:12;:16;;;;:::i;:::-;7663:14;:25;7678:9;7663:25;;;;;;;;;;;;;;;;:44;;;;;;;;;;;;;;;;;;7384:334;7758:9;7737:51;;;7769:8;7779;7737:51;;;;;;;:::i;:::-;;;;;;;;7258:537;7101:694;;;;:::o;12052:91:1:-;;;;:::o;7805:158:7:-;7880:6;7910:5;7906:1;:9;7917:12;7898:32;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;7954:1;7940:16;;7805:158;;;;:::o;7:77:8:-;44:7;73:5;62:16;;7:77;;;:::o;90:118::-;177:24;195:5;177:24;:::i;:::-;172:3;165:37;90:118;;:::o;214:222::-;307:4;345:2;334:9;330:18;322:26;;358:71;426:1;415:9;411:17;402:6;358:71;:::i;:::-;214:222;;;;:::o;442:99::-;494:6;528:5;522:12;512:22;;442:99;;;:::o;547:169::-;631:11;665:6;660:3;653:19;705:4;700:3;696:14;681:29;;547:169;;;;:::o;722:246::-;803:1;813:113;827:6;824:1;821:13;813:113;;;912:1;907:3;903:11;897:18;893:1;888:3;884:11;877:39;849:2;846:1;842:10;837:15;;813:113;;;960:1;951:6;946:3;942:16;935:27;784:184;722:246;;;:::o;974:102::-;1015:6;1066:2;1062:7;1057:2;1050:5;1046:14;1042:28;1032:38;;974:102;;;:::o;1082:377::-;1170:3;1198:39;1231:5;1198:39;:::i;:::-;1253:71;1317:6;1312:3;1253:71;:::i;:::-;1246:78;;1333:65;1391:6;1386:3;1379:4;1372:5;1368:16;1333:65;:::i;:::-;1423:29;1445:6;1423:29;:::i;:::-;1418:3;1414:39;1407:46;;1174:285;1082:377;;;;:::o;1465:313::-;1578:4;1616:2;1605:9;1601:18;1593:26;;1665:9;1659:4;1655:20;1651:1;1640:9;1636:17;1629:47;1693:78;1766:4;1757:6;1693:78;:::i;:::-;1685:86;;1465:313;;;;:::o;1865:117::-;1974:1;1971;1964:12;2111:126;2148:7;2188:42;2181:5;2177:54;2166:65;;2111:126;;;:::o;2243:96::-;2280:7;2309:24;2327:5;2309:24;:::i;:::-;2298:35;;2243:96;;;:::o;2345:122::-;2418:24;2436:5;2418:24;:::i;:::-;2411:5;2408:35;2398:63;;2457:1;2454;2447:12;2398:63;2345:122;:::o;2473:139::-;2519:5;2557:6;2544:20;2535:29;;2573:33;2600:5;2573:33;:::i;:::-;2473:139;;;;:::o;2618:122::-;2691:24;2709:5;2691:24;:::i;:::-;2684:5;2681:35;2671:63;;2730:1;2727;2720:12;2671:63;2618:122;:::o;2746:139::-;2792:5;2830:6;2817:20;2808:29;;2846:33;2873:5;2846:33;:::i;:::-;2746:139;;;;:::o;2891:474::-;2959:6;2967;3016:2;3004:9;2995:7;2991:23;2987:32;2984:119;;;3022:79;;:::i;:::-;2984:119;3142:1;3167:53;3212:7;3203:6;3192:9;3188:22;3167:53;:::i;:::-;3157:63;;3113:117;3269:2;3295:53;3340:7;3331:6;3320:9;3316:22;3295:53;:::i;:::-;3285:63;;3240:118;2891:474;;;;;:::o;3371:90::-;3405:7;3448:5;3441:13;3434:21;3423:32;;3371:90;;;:::o;3467:109::-;3548:21;3563:5;3548:21;:::i;:::-;3543:3;3536:34;3467:109;;:::o;3582:210::-;3669:4;3707:2;3696:9;3692:18;3684:26;;3720:65;3782:1;3771:9;3767:17;3758:6;3720:65;:::i;:::-;3582:210;;;;:::o;3798:77::-;3835:7;3864:5;3853:16;;3798:77;;;:::o;3881:118::-;3968:24;3986:5;3968:24;:::i;:::-;3963:3;3956:37;3881:118;;:::o;4005:222::-;4098:4;4136:2;4125:9;4121:18;4113:26;;4149:71;4217:1;4206:9;4202:17;4193:6;4149:71;:::i;:::-;4005:222;;;;:::o;4233:329::-;4292:6;4341:2;4329:9;4320:7;4316:23;4312:32;4309:119;;;4347:79;;:::i;:::-;4309:119;4467:1;4492:53;4537:7;4528:6;4517:9;4513:22;4492:53;:::i;:::-;4482:63;;4438:117;4233:329;;;;:::o;4568:619::-;4645:6;4653;4661;4710:2;4698:9;4689:7;4685:23;4681:32;4678:119;;;4716:79;;:::i;:::-;4678:119;4836:1;4861:53;4906:7;4897:6;4886:9;4882:22;4861:53;:::i;:::-;4851:63;;4807:117;4963:2;4989:53;5034:7;5025:6;5014:9;5010:22;4989:53;:::i;:::-;4979:63;;4934:118;5091:2;5117:53;5162:7;5153:6;5142:9;5138:22;5117:53;:::i;:::-;5107:63;;5062:118;4568:619;;;;;:::o;5193:86::-;5228:7;5268:4;5261:5;5257:16;5246:27;;5193:86;;;:::o;5285:112::-;5368:22;5384:5;5368:22;:::i;:::-;5363:3;5356:35;5285:112;;:::o;5403:214::-;5492:4;5530:2;5519:9;5515:18;5507:26;;5543:67;5607:1;5596:9;5592:17;5583:6;5543:67;:::i;:::-;5403:214;;;;:::o;5623:118::-;5710:24;5728:5;5710:24;:::i;:::-;5705:3;5698:37;5623:118;;:::o;5747:222::-;5840:4;5878:2;5867:9;5863:18;5855:26;;5891:71;5959:1;5948:9;5944:17;5935:6;5891:71;:::i;:::-;5747:222;;;;:::o;5975:329::-;6034:6;6083:2;6071:9;6062:7;6058:23;6054:32;6051:119;;;6089:79;;:::i;:::-;6051:119;6209:1;6234:53;6279:7;6270:6;6259:9;6255:22;6234:53;:::i;:::-;6224:63;;6180:117;5975:329;;;;:::o;6310:93::-;6346:7;6386:10;6379:5;6375:22;6364:33;;6310:93;;;:::o;6409:115::-;6494:23;6511:5;6494:23;:::i;:::-;6489:3;6482:36;6409:115;;:::o;6530:218::-;6621:4;6659:2;6648:9;6644:18;6636:26;;6672:69;6738:1;6727:9;6723:17;6714:6;6672:69;:::i;:::-;6530:218;;;;:::o;6754:118::-;6825:22;6841:5;6825:22;:::i;:::-;6818:5;6815:33;6805:61;;6862:1;6859;6852:12;6805:61;6754:118;:::o;6878:135::-;6922:5;6960:6;6947:20;6938:29;;6976:31;7001:5;6976:31;:::i;:::-;6878:135;;;;:::o;7019:122::-;7092:24;7110:5;7092:24;:::i;:::-;7085:5;7082:35;7072:63;;7131:1;7128;7121:12;7072:63;7019:122;:::o;7147:139::-;7193:5;7231:6;7218:20;7209:29;;7247:33;7274:5;7247:33;:::i;:::-;7147:139;;;;:::o;7292:1053::-;7394:6;7402;7410;7418;7426;7434;7483:3;7471:9;7462:7;7458:23;7454:33;7451:120;;;7490:79;;:::i;:::-;7451:120;7610:1;7635:53;7680:7;7671:6;7660:9;7656:22;7635:53;:::i;:::-;7625:63;;7581:117;7737:2;7763:53;7808:7;7799:6;7788:9;7784:22;7763:53;:::i;:::-;7753:63;;7708:118;7865:2;7891:53;7936:7;7927:6;7916:9;7912:22;7891:53;:::i;:::-;7881:63;;7836:118;7993:2;8019:51;8062:7;8053:6;8042:9;8038:22;8019:51;:::i;:::-;8009:61;;7964:116;8119:3;8146:53;8191:7;8182:6;8171:9;8167:22;8146:53;:::i;:::-;8136:63;;8090:119;8248:3;8275:53;8320:7;8311:6;8300:9;8296:22;8275:53;:::i;:::-;8265:63;;8219:119;7292:1053;;;;;;;;:::o;8351:474::-;8419:6;8427;8476:2;8464:9;8455:7;8451:23;8447:32;8444:119;;;8482:79;;:::i;:::-;8444:119;8602:1;8627:53;8672:7;8663:6;8652:9;8648:22;8627:53;:::i;:::-;8617:63;;8573:117;8729:2;8755:53;8800:7;8791:6;8780:9;8776:22;8755:53;:::i;:::-;8745:63;;8700:118;8351:474;;;;;:::o;8831:120::-;8903:23;8920:5;8903:23;:::i;:::-;8896:5;8893:34;8883:62;;8941:1;8938;8931:12;8883:62;8831:120;:::o;8957:137::-;9002:5;9040:6;9027:20;9018:29;;9056:32;9082:5;9056:32;:::i;:::-;8957:137;;;;:::o;9100:472::-;9167:6;9175;9224:2;9212:9;9203:7;9199:23;9195:32;9192:119;;;9230:79;;:::i;:::-;9192:119;9350:1;9375:53;9420:7;9411:6;9400:9;9396:22;9375:53;:::i;:::-;9365:63;;9321:117;9477:2;9503:52;9547:7;9538:6;9527:9;9523:22;9503:52;:::i;:::-;9493:62;;9448:117;9100:472;;;;;:::o;9578:328::-;9697:4;9735:2;9724:9;9720:18;9712:26;;9748:69;9814:1;9803:9;9799:17;9790:6;9748:69;:::i;:::-;9827:72;9895:2;9884:9;9880:18;9871:6;9827:72;:::i;:::-;9578:328;;;;;:::o;9912:180::-;9960:77;9957:1;9950:88;10057:4;10054:1;10047:15;10081:4;10078:1;10071:15;10098:320;10142:6;10179:1;10173:4;10169:12;10159:22;;10226:1;10220:4;10216:12;10247:18;10237:81;;10303:4;10295:6;10291:17;10281:27;;10237:81;10365:2;10357:6;10354:14;10334:18;10331:38;10328:84;;10384:18;;:::i;:::-;10328:84;10149:269;10098:320;;;:::o;10424:224::-;10564:34;10560:1;10552:6;10548:14;10541:58;10633:7;10628:2;10620:6;10616:15;10609:32;10424:224;:::o;10654:366::-;10796:3;10817:67;10881:2;10876:3;10817:67;:::i;:::-;10810:74;;10893:93;10982:3;10893:93;:::i;:::-;11011:2;11006:3;11002:12;10995:19;;10654:366;;;:::o;11026:419::-;11192:4;11230:2;11219:9;11215:18;11207:26;;11279:9;11273:4;11269:20;11265:1;11254:9;11250:17;11243:47;11307:131;11433:4;11307:131;:::i;:::-;11299:139;;11026:419;;;:::o;11451:180::-;11499:77;11496:1;11489:88;11596:4;11593:1;11586:15;11620:4;11617:1;11610:15;11637:191;11677:3;11696:20;11714:1;11696:20;:::i;:::-;11691:25;;11730:20;11748:1;11730:20;:::i;:::-;11725:25;;11773:1;11770;11766:9;11759:16;;11794:3;11791:1;11788:10;11785:36;;;11801:18;;:::i;:::-;11785:36;11637:191;;;;:::o;11834:174::-;11974:26;11970:1;11962:6;11958:14;11951:50;11834:174;:::o;12014:366::-;12156:3;12177:67;12241:2;12236:3;12177:67;:::i;:::-;12170:74;;12253:93;12342:3;12253:93;:::i;:::-;12371:2;12366:3;12362:12;12355:19;;12014:366;;;:::o;12386:419::-;12552:4;12590:2;12579:9;12575:18;12567:26;;12639:9;12633:4;12629:20;12625:1;12614:9;12610:17;12603:47;12667:131;12793:4;12667:131;:::i;:::-;12659:139;;12386:419;;;:::o;12811:227::-;12951:34;12947:1;12939:6;12935:14;12928:58;13020:10;13015:2;13007:6;13003:15;12996:35;12811:227;:::o;13044:366::-;13186:3;13207:67;13271:2;13266:3;13207:67;:::i;:::-;13200:74;;13283:93;13372:3;13283:93;:::i;:::-;13401:2;13396:3;13392:12;13385:19;;13044:366;;;:::o;13416:419::-;13582:4;13620:2;13609:9;13605:18;13597:26;;13669:9;13663:4;13659:20;13655:1;13644:9;13640:17;13633:47;13697:131;13823:4;13697:131;:::i;:::-;13689:139;;13416:419;;;:::o;13841:194::-;13881:4;13901:20;13919:1;13901:20;:::i;:::-;13896:25;;13935:20;13953:1;13935:20;:::i;:::-;13930:25;;13979:1;13976;13972:9;13964:17;;14003:1;13997:4;13994:11;13991:37;;;14008:18;;:::i;:::-;13991:37;13841:194;;;;:::o;14041:179::-;14181:31;14177:1;14169:6;14165:14;14158:55;14041:179;:::o;14226:366::-;14368:3;14389:67;14453:2;14448:3;14389:67;:::i;:::-;14382:74;;14465:93;14554:3;14465:93;:::i;:::-;14583:2;14578:3;14574:12;14567:19;;14226:366;;;:::o;14598:419::-;14764:4;14802:2;14791:9;14787:18;14779:26;;14851:9;14845:4;14841:20;14837:1;14826:9;14822:17;14815:47;14879:131;15005:4;14879:131;:::i;:::-;14871:139;;14598:419;;;:::o;15023:442::-;15172:4;15210:2;15199:9;15195:18;15187:26;;15223:71;15291:1;15280:9;15276:17;15267:6;15223:71;:::i;:::-;15304:72;15372:2;15361:9;15357:18;15348:6;15304:72;:::i;:::-;15386;15454:2;15443:9;15439:18;15430:6;15386:72;:::i;:::-;15023:442;;;;;;:::o;15471:116::-;15541:21;15556:5;15541:21;:::i;:::-;15534:5;15531:32;15521:60;;15577:1;15574;15567:12;15521:60;15471:116;:::o;15593:137::-;15647:5;15678:6;15672:13;15663:22;;15694:30;15718:5;15694:30;:::i;:::-;15593:137;;;;:::o;15736:345::-;15803:6;15852:2;15840:9;15831:7;15827:23;15823:32;15820:119;;;15858:79;;:::i;:::-;15820:119;15978:1;16003:61;16056:7;16047:6;16036:9;16032:22;16003:61;:::i;:::-;15993:71;;15949:125;15736:345;;;;:::o;16087:410::-;16127:7;16150:20;16168:1;16150:20;:::i;:::-;16145:25;;16184:20;16202:1;16184:20;:::i;:::-;16179:25;;16239:1;16236;16232:9;16261:30;16279:11;16261:30;:::i;:::-;16250:41;;16440:1;16431:7;16427:15;16424:1;16421:22;16401:1;16394:9;16374:83;16351:139;;16470:18;;:::i;:::-;16351:139;16135:362;16087:410;;;;:::o;16503:230::-;16643:34;16639:1;16631:6;16627:14;16620:58;16712:13;16707:2;16699:6;16695:15;16688:38;16503:230;:::o;16739:366::-;16881:3;16902:67;16966:2;16961:3;16902:67;:::i;:::-;16895:74;;16978:93;17067:3;16978:93;:::i;:::-;17096:2;17091:3;17087:12;17080:19;;16739:366;;;:::o;17111:419::-;17277:4;17315:2;17304:9;17300:18;17292:26;;17364:9;17358:4;17354:20;17350:1;17339:9;17335:17;17328:47;17392:131;17518:4;17392:131;:::i;:::-;17384:139;;17111:419;;;:::o;17536:200::-;17575:4;17595:19;17612:1;17595:19;:::i;:::-;17590:24;;17628:19;17645:1;17628:19;:::i;:::-;17623:24;;17671:1;17668;17664:9;17656:17;;17695:10;17689:4;17686:20;17683:46;;;17709:18;;:::i;:::-;17683:46;17536:200;;;;:::o;17742:180::-;17790:77;17787:1;17780:88;17887:4;17884:1;17877:15;17911:4;17908:1;17901:15;17928:182;17967:1;17984:19;18001:1;17984:19;:::i;:::-;17979:24;;18017:19;18034:1;18017:19;:::i;:::-;18012:24;;18055:1;18045:35;;18060:18;;:::i;:::-;18045:35;18102:1;18099;18095:9;18090:14;;17928:182;;;;:::o;18116:228::-;18256:34;18252:1;18244:6;18240:14;18233:58;18325:11;18320:2;18312:6;18308:15;18301:36;18116:228;:::o;18350:366::-;18492:3;18513:67;18577:2;18572:3;18513:67;:::i;:::-;18506:74;;18589:93;18678:3;18589:93;:::i;:::-;18707:2;18702:3;18698:12;18691:19;;18350:366;;;:::o;18722:419::-;18888:4;18926:2;18915:9;18911:18;18903:26;;18975:9;18969:4;18965:20;18961:1;18950:9;18946:17;18939:47;19003:131;19129:4;19003:131;:::i;:::-;18995:139;;18722:419;;;:::o;19147:224::-;19287:34;19283:1;19275:6;19271:14;19264:58;19356:7;19351:2;19343:6;19339:15;19332:32;19147:224;:::o;19377:366::-;19519:3;19540:67;19604:2;19599:3;19540:67;:::i;:::-;19533:74;;19616:93;19705:3;19616:93;:::i;:::-;19734:2;19729:3;19725:12;19718:19;;19377:366;;;:::o;19749:419::-;19915:4;19953:2;19942:9;19938:18;19930:26;;20002:9;19996:4;19992:20;19988:1;19977:9;19973:17;19966:47;20030:131;20156:4;20030:131;:::i;:::-;20022:139;;19749:419;;;:::o;20174:553::-;20351:4;20389:3;20378:9;20374:19;20366:27;;20403:71;20471:1;20460:9;20456:17;20447:6;20403:71;:::i;:::-;20484:72;20552:2;20541:9;20537:18;20528:6;20484:72;:::i;:::-;20566;20634:2;20623:9;20619:18;20610:6;20566:72;:::i;:::-;20648;20716:2;20705:9;20701:18;20692:6;20648:72;:::i;:::-;20174:553;;;;;;;:::o;20733:::-;20910:4;20948:3;20937:9;20933:19;20925:27;;20962:71;21030:1;21019:9;21015:17;21006:6;20962:71;:::i;:::-;21043:72;21111:2;21100:9;21096:18;21087:6;21043:72;:::i;:::-;21125;21193:2;21182:9;21178:18;21169:6;21125:72;:::i;:::-;21207;21275:2;21264:9;21260:18;21251:6;21207:72;:::i;:::-;20733:553;;;;;;;:::o;21292:148::-;21394:11;21431:3;21416:18;;21292:148;;;;:::o;21446:214::-;21586:66;21582:1;21574:6;21570:14;21563:90;21446:214;:::o;21666:400::-;21826:3;21847:84;21929:1;21924:3;21847:84;:::i;:::-;21840:91;;21940:93;22029:3;21940:93;:::i;:::-;22058:1;22053:3;22049:11;22042:18;;21666:400;;;:::o;22072:79::-;22111:7;22140:5;22129:16;;22072:79;;;:::o;22157:157::-;22262:45;22282:24;22300:5;22282:24;:::i;:::-;22262:45;:::i;:::-;22257:3;22250:58;22157:157;;:::o;22320:663::-;22561:3;22583:148;22727:3;22583:148;:::i;:::-;22576:155;;22741:75;22812:3;22803:6;22741:75;:::i;:::-;22841:2;22836:3;22832:12;22825:19;;22854:75;22925:3;22916:6;22854:75;:::i;:::-;22954:2;22949:3;22945:12;22938:19;;22974:3;22967:10;;22320:663;;;;;:::o;22989:545::-;23162:4;23200:3;23189:9;23185:19;23177:27;;23214:71;23282:1;23271:9;23267:17;23258:6;23214:71;:::i;:::-;23295:68;23359:2;23348:9;23344:18;23335:6;23295:68;:::i;:::-;23373:72;23441:2;23430:9;23426:18;23417:6;23373:72;:::i;:::-;23455;23523:2;23512:9;23508:18;23499:6;23455:72;:::i;:::-;22989:545;;;;;;;:::o;23540:229::-;23680:34;23676:1;23668:6;23664:14;23657:58;23749:12;23744:2;23736:6;23732:15;23725:37;23540:229;:::o;23775:366::-;23917:3;23938:67;24002:2;23997:3;23938:67;:::i;:::-;23931:74;;24014:93;24103:3;24014:93;:::i;:::-;24132:2;24127:3;24123:12;24116:19;;23775:366;;;:::o;24147:419::-;24313:4;24351:2;24340:9;24336:18;24328:26;;24400:9;24394:4;24390:20;24386:1;24375:9;24371:17;24364:47;24428:131;24554:4;24428:131;:::i;:::-;24420:139;;24147:419;;;:::o;24572:233::-;24611:3;24634:24;24652:5;24634:24;:::i;:::-;24625:33;;24680:66;24673:5;24670:77;24667:103;;24750:18;;:::i;:::-;24667:103;24797:1;24790:5;24786:13;24779:20;;24572:233;;;:::o;24811:225::-;24951:34;24947:1;24939:6;24935:14;24928:58;25020:8;25015:2;25007:6;25003:15;24996:33;24811:225;:::o;25042:366::-;25184:3;25205:67;25269:2;25264:3;25205:67;:::i;:::-;25198:74;;25281:93;25370:3;25281:93;:::i;:::-;25399:2;25394:3;25390:12;25383:19;;25042:366;;;:::o;25414:419::-;25580:4;25618:2;25607:9;25603:18;25595:26;;25667:9;25661:4;25657:20;25653:1;25642:9;25638:17;25631:47;25695:131;25821:4;25695:131;:::i;:::-;25687:139;;25414:419;;;:::o;25839:229::-;25979:34;25975:1;25967:6;25963:14;25956:58;26048:12;26043:2;26035:6;26031:15;26024:37;25839:229;:::o;26074:366::-;26216:3;26237:67;26301:2;26296:3;26237:67;:::i;:::-;26230:74;;26313:93;26402:3;26313:93;:::i;:::-;26431:2;26426:3;26422:12;26415:19;;26074:366;;;:::o;26446:419::-;26612:4;26650:2;26639:9;26635:18;26627:26;;26699:9;26693:4;26689:20;26685:1;26674:9;26670:17;26663:47;26727:131;26853:4;26727:131;:::i;:::-;26719:139;;26446:419;;;:::o;26871:223::-;27011:34;27007:1;26999:6;26995:14;26988:58;27080:6;27075:2;27067:6;27063:15;27056:31;26871:223;:::o;27100:366::-;27242:3;27263:67;27327:2;27322:3;27263:67;:::i;:::-;27256:74;;27339:93;27428:3;27339:93;:::i;:::-;27457:2;27452:3;27448:12;27441:19;;27100:366;;;:::o;27472:419::-;27638:4;27676:2;27665:9;27661:18;27653:26;;27725:9;27719:4;27715:20;27711:1;27700:9;27696:17;27689:47;27753:131;27879:4;27753:131;:::i;:::-;27745:139;;27472:419;;;:::o;27897:221::-;28037:34;28033:1;28025:6;28021:14;28014:58;28106:4;28101:2;28093:6;28089:15;28082:29;27897:221;:::o;28124:366::-;28266:3;28287:67;28351:2;28346:3;28287:67;:::i;:::-;28280:74;;28363:93;28452:3;28363:93;:::i;:::-;28481:2;28476:3;28472:12;28465:19;;28124:366;;;:::o;28496:419::-;28662:4;28700:2;28689:9;28685:18;28677:26;;28749:9;28743:4;28739:20;28735:1;28724:9;28720:17;28713:47;28777:131;28903:4;28777:131;:::i;:::-;28769:139;;28496:419;;;:::o;28921:182::-;29061:34;29057:1;29049:6;29045:14;29038:58;28921:182;:::o;29109:366::-;29251:3;29272:67;29336:2;29331:3;29272:67;:::i;:::-;29265:74;;29348:93;29437:3;29348:93;:::i;:::-;29466:2;29461:3;29457:12;29450:19;;29109:366;;;:::o;29481:419::-;29647:4;29685:2;29674:9;29670:18;29662:26;;29734:9;29728:4;29724:20;29720:1;29709:9;29705:17;29698:47;29762:131;29888:4;29762:131;:::i;:::-;29754:139;;29481:419;;;:::o;29906:179::-;30046:31;30042:1;30034:6;30030:14;30023:55;29906:179;:::o;30091:366::-;30233:3;30254:67;30318:2;30313:3;30254:67;:::i;:::-;30247:74;;30330:93;30419:3;30330:93;:::i;:::-;30448:2;30443:3;30439:12;30432:19;;30091:366;;;:::o;30463:419::-;30629:4;30667:2;30656:9;30652:18;30644:26;;30716:9;30710:4;30706:20;30702:1;30691:9;30687:17;30680:47;30744:131;30870:4;30744:131;:::i;:::-;30736:139;;30463:419;;;:::o;30888:180::-;30936:77;30933:1;30926:88;31033:4;31030:1;31023:15;31057:4;31054:1;31047:15;31074:180;31122:77;31119:1;31112:88;31219:4;31216:1;31209:15;31243:4;31240:1;31233:15;31260:224;31400:34;31396:1;31388:6;31384:14;31377:58;31469:7;31464:2;31456:6;31452:15;31445:32;31260:224;:::o;31490:366::-;31632:3;31653:67;31717:2;31712:3;31653:67;:::i;:::-;31646:74;;31729:93;31818:3;31729:93;:::i;:::-;31847:2;31842:3;31838:12;31831:19;;31490:366;;;:::o;31862:419::-;32028:4;32066:2;32055:9;32051:18;32043:26;;32115:9;32109:4;32105:20;32101:1;32090:9;32086:17;32079:47;32143:131;32269:4;32143:131;:::i;:::-;32135:139;;31862:419;;;:::o;32287:222::-;32427:34;32423:1;32415:6;32411:14;32404:58;32496:5;32491:2;32483:6;32479:15;32472:30;32287:222;:::o;32515:366::-;32657:3;32678:67;32742:2;32737:3;32678:67;:::i;:::-;32671:74;;32754:93;32843:3;32754:93;:::i;:::-;32872:2;32867:3;32863:12;32856:19;;32515:366;;;:::o;32887:419::-;33053:4;33091:2;33080:9;33076:18;33068:26;;33140:9;33134:4;33130:20;33126:1;33115:9;33111:17;33104:47;33168:131;33294:4;33168:131;:::i;:::-;33160:139;;32887:419;;;:::o;33312:225::-;33452:34;33448:1;33440:6;33436:14;33429:58;33521:8;33516:2;33508:6;33504:15;33497:33;33312:225;:::o;33543:366::-;33685:3;33706:67;33770:2;33765:3;33706:67;:::i;:::-;33699:74;;33782:93;33871:3;33782:93;:::i;:::-;33900:2;33895:3;33891:12;33884:19;;33543:366;;;:::o;33915:419::-;34081:4;34119:2;34108:9;34104:18;34096:26;;34168:9;34162:4;34158:20;34154:1;34143:9;34139:17;34132:47;34196:131;34322:4;34196:131;:::i;:::-;34188:139;;33915:419;;;:::o;34340:181::-;34480:33;34476:1;34468:6;34464:14;34457:57;34340:181;:::o;34527:366::-;34669:3;34690:67;34754:2;34749:3;34690:67;:::i;:::-;34683:74;;34766:93;34855:3;34766:93;:::i;:::-;34884:2;34879:3;34875:12;34868:19;;34527:366;;;:::o;34899:419::-;35065:4;35103:2;35092:9;35088:18;35080:26;;35152:9;35146:4;35142:20;35138:1;35127:9;35123:17;35116:47;35180:131;35306:4;35180:131;:::i;:::-;35172:139;;34899:419;;;:::o;35324:179::-;35464:31;35460:1;35452:6;35448:14;35441:55;35324:179;:::o;35509:366::-;35651:3;35672:67;35736:2;35731:3;35672:67;:::i;:::-;35665:74;;35748:93;35837:3;35748:93;:::i;:::-;35866:2;35861:3;35857:12;35850:19;;35509:366;;;:::o;35881:419::-;36047:4;36085:2;36074:9;36070:18;36062:26;;36134:9;36128:4;36124:20;36120:1;36109:9;36105:17;36098:47;36162:131;36288:4;36162:131;:::i;:::-;36154:139;;35881:419;;;:::o;36306:177::-;36446:29;36442:1;36434:6;36430:14;36423:53;36306:177;:::o;36489:366::-;36631:3;36652:67;36716:2;36711:3;36652:67;:::i;:::-;36645:74;;36728:93;36817:3;36728:93;:::i;:::-;36846:2;36841:3;36837:12;36830:19;;36489:366;;;:::o;36861:419::-;37027:4;37065:2;37054:9;37050:18;37042:26;;37114:9;37108:4;37104:20;37100:1;37089:9;37085:17;37078:47;37142:131;37268:4;37142:131;:::i;:::-;37134:139;;36861:419;;;:::o;37286:197::-;37325:3;37344:19;37361:1;37344:19;:::i;:::-;37339:24;;37377:19;37394:1;37377:19;:::i;:::-;37372:24;;37419:1;37416;37412:9;37405:16;;37442:10;37437:3;37434:19;37431:45;;;37456:18;;:::i;:::-;37431:45;37286:197;;;;:::o;37489:332::-;37610:4;37648:2;37637:9;37633:18;37625:26;;37661:71;37729:1;37718:9;37714:17;37705:6;37661:71;:::i;:::-;37742:72;37810:2;37799:9;37795:18;37786:6;37742:72;:::i;:::-;37489:332;;;;;:::o

Swarm Source

ipfs://e97dd973d27238ebb630be95a9739f9d5ea3a8ba009542dff57f96215ac79ccf
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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