ETH Price: $3,028.56 (+2.34%)
Gas: 2 Gwei

Token

Rope Makers United (RMU)
 

Overview

Max Total Supply

12,563 RMU

Holders

771

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
0xaec539a116fa75e8bdcf016d3c146a25bc1af93b
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
RMU

Compiler Version
v0.5.17+commit.d19bba13

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-10-01
*/

pragma solidity >=0.5.0 <0.6.0;

/*Proven Compiler v0.5.12+commit.7709ece9*/

/*
 * @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 GSN 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.
 */


/*

/$$$$$$$                     /$$ /$$           /$$$$$$$                            /$$$$$$$
| $$__  $$                   | $/| $$          | $$__  $$                          | $$__  $$
| $$  \ $$  /$$$$$$  /$$$$$$$|_//$$$$$$        | $$  \ $$ /$$   /$$ /$$   /$$      | $$  \ $$  /$$$$$$   /$$$$$$   /$$$$$$
| $$  | $$ /$$__  $$| $$__  $$ |_  $$_/        | $$$$$$$ | $$  | $$| $$  | $$      | $$$$$$$/ /$$__  $$ /$$__  $$ /$$__  $$
| $$  | $$| $$  \ $$| $$  \ $$   | $$          | $$__  $$| $$  | $$| $$  | $$      | $$__  $$| $$  \ $$| $$  \ $$| $$$$$$$$
| $$  | $$| $$  | $$| $$  | $$   | $$ /$$      | $$  \ $$| $$  | $$| $$  | $$      | $$  \ $$| $$  | $$| $$  | $$| $$_____/
| $$$$$$$/|  $$$$$$/| $$  | $$   |  $$$$/      | $$$$$$$/|  $$$$$$/|  $$$$$$$      | $$  | $$|  $$$$$$/| $$$$$$$/|  $$$$$$$
|_______/  \______/ |__/  |__/    \___/        |_______/  \______/  \____  $$      |__/  |__/ \______/ | $$____/  \_______/
                                                                  /$$  | $$                          | $$
                                                                 |  $$$$$$/                          | $$
                                                                  \______/                           |__/

*Friendly Message from Anon "Devs"*
Digital Assets can be extremely volatile - Good Times come with the Bad Times
When times are tough we are here to help cope - Don't Buy Rope

https://suicidepreventionlifeline.org/
1-800-273-8255

https://en.wikipedia.org/wiki/List_of_suicide_crisis_lines

*/


contract Context {
    // Empty internal constructor, to prevent people from mistakenly deploying
    // an instance of this contract, which should be used via inheritance.
    constructor () internal { }
    // solhint-disable-previous-line no-empty-blocks

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

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

/**
 * @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.
 *
 * 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.
 */
contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

    /**
     * @dev Returns true if the caller is the current owner.
     */
    function isOwner() public view returns (bool) {
        return _msgSender() == _owner;
    }

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public onlyOwner {
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     */
    function _transferOwnership(address newOwner) internal {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

/**
 * @title Roles
 * @dev Library for managing addresses assigned to a Role.
 */
library Roles {
    struct Role {
        mapping (address => bool) bearer;
    }

    /**
     * @dev Give an account access to this role.
     */
    function add(Role storage role, address account) internal {
        require(!has(role, account), "Roles: account already has role");
        role.bearer[account] = true;
    }

    /**
     * @dev Remove an account's access to this role.
     */
    function remove(Role storage role, address account) internal {
        require(has(role, account), "Roles: account does not have role");
        role.bearer[account] = false;
    }

    /**
     * @dev Check if an account has this role.
     * @return bool
     */
    function has(Role storage role, address account) internal view returns (bool) {
        require(account != address(0), "Roles: account is the zero address");
        return role.bearer[account];
    }
}

contract MinterRole is Context {
    using Roles for Roles.Role;

    event MinterAdded(address indexed account);
    event MinterRemoved(address indexed account);

    Roles.Role private _minters;

    constructor () internal {
        _addMinter(_msgSender());
    }

    modifier onlyMinter() {
        require(isMinter(_msgSender()), "MinterRole: caller does not have the Minter role");
        _;
    }

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

    function addMinter(address account) public onlyMinter {
        _addMinter(account);
    }

    function renounceMinter() public {
        _removeMinter(_msgSender());
    }

    function _addMinter(address account) internal {
        _minters.add(account);
        emit MinterAdded(account);
    }

    function _removeMinter(address account) internal {
        _minters.remove(account);
        emit MinterRemoved(account);
    }
}

/**
 * @title WhitelistAdminRole
 * @dev WhitelistAdmins are responsible for assigning and removing Whitelisted accounts.
 */
contract WhitelistAdminRole is Context {
    using Roles for Roles.Role;

    event WhitelistAdminAdded(address indexed account);
    event WhitelistAdminRemoved(address indexed account);

    Roles.Role private _whitelistAdmins;

    constructor () internal {
        _addWhitelistAdmin(_msgSender());
    }

    modifier onlyWhitelistAdmin() {
        require(isWhitelistAdmin(_msgSender()), "WhitelistAdminRole: caller does not have the WhitelistAdmin role");
        _;
    }

    function isWhitelistAdmin(address account) public view returns (bool) {
        return _whitelistAdmins.has(account);
    }

    function addWhitelistAdmin(address account) public onlyWhitelistAdmin {
        _addWhitelistAdmin(account);
    }

    function renounceWhitelistAdmin() public {
        _removeWhitelistAdmin(_msgSender());
    }

    function _addWhitelistAdmin(address account) internal {
        _whitelistAdmins.add(account);
        emit WhitelistAdminAdded(account);
    }

    function _removeWhitelistAdmin(address account) internal {
        _whitelistAdmins.remove(account);
        emit WhitelistAdminRemoved(account);
    }
}

/**
 * @title ERC165
 * @dev https://github.com/ethereum/EIPs/blob/master/EIPS/eip-165.md
 */
interface IERC165 {

    /**
     * @notice Query if a contract implements an interface
     * @dev Interface identification is specified in ERC-165. This function
     * uses less than 30,000 gas
     * @param _interfaceId The interface identifier, as specified in ERC-165
     */
    function supportsInterface(bytes4 _interfaceId)
    external
    view
    returns (bool);
}

/**
 * @title SafeMath
 * @dev Unsigned math operations with safety checks that revert on error
 */
library SafeMath {

    /**
     * @dev Multiplies two unsigned integers, reverts on overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath#mul: OVERFLOW");

        return c;
    }

    /**
     * @dev Integer division of two unsigned integers truncating the quotient, reverts on division by zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0, "SafeMath#div: DIVISION_BY_ZERO");
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Subtracts two unsigned integers, reverts on overflow (i.e. if subtrahend is greater than minuend).
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= a, "SafeMath#sub: UNDERFLOW");
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Adds two unsigned integers, reverts on overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath#add: OVERFLOW");

        return c;
    }

    /**
     * @dev Divides two unsigned integers and returns the remainder (unsigned integer modulo),
     * reverts when dividing by zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b != 0, "SafeMath#mod: DIVISION_BY_ZERO");
        return a % b;
    }

}

/**
 * @dev ERC-1155 interface for accepting safe transfers.
 */
interface IERC1155TokenReceiver {

    /**
     * @notice Handle the receipt of a single ERC1155 token type
     * @dev An ERC1155-compliant smart contract MUST call this function on the token recipient contract, at the end of a `safeTransferFrom` after the balance has been updated
     * This function MAY throw to revert and reject the transfer
     * Return of other amount than the magic value MUST result in the transaction being reverted
     * Note: The token contract address is always the message sender
     * @param _operator  The address which called the `safeTransferFrom` function
     * @param _from      The address which previously owned the token
     * @param _id        The id of the token being transferred
     * @param _amount    The amount of tokens being transferred
     * @param _data      Additional data with no specified format
     * @return           `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
     */
    function onERC1155Received(address _operator, address _from, uint256 _id, uint256 _amount, bytes calldata _data) external returns(bytes4);

    /**
     * @notice Handle the receipt of multiple ERC1155 token types
     * @dev An ERC1155-compliant smart contract MUST call this function on the token recipient contract, at the end of a `safeBatchTransferFrom` after the balances have been updated
     * This function MAY throw to revert and reject the transfer
     * Return of other amount than the magic value WILL result in the transaction being reverted
     * Note: The token contract address is always the message sender
     * @param _operator  The address which called the `safeBatchTransferFrom` function
     * @param _from      The address which previously owned the token
     * @param _ids       An array containing ids of each token being transferred
     * @param _amounts   An array containing amounts of each token being transferred
     * @param _data      Additional data with no specified format
     * @return           `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
     */
    function onERC1155BatchReceived(address _operator, address _from, uint256[] calldata _ids, uint256[] calldata _amounts, bytes calldata _data) external returns(bytes4);

    /**
     * @notice Indicates whether a contract implements the `ERC1155TokenReceiver` functions and so can accept ERC1155 token types.
     * @param  interfaceID The ERC-165 interface ID that is queried for support.s
     * @dev This function MUST return true if it implements the ERC1155TokenReceiver interface and ERC-165 interface.
     *      This function MUST NOT consume more than 5,000 gas.
     * @return Wheter ERC-165 or ERC1155TokenReceiver interfaces are supported.
     */
    function supportsInterface(bytes4 interfaceID) external view returns (bool);

}

interface IERC1155 {
    // Events

    /**
     * @dev Either TransferSingle or TransferBatch MUST emit when tokens are transferred, including zero amount transfers as well as minting or burning
     *   Operator MUST be msg.sender
     *   When minting/creating tokens, the `_from` field MUST be set to `0x0`
     *   When burning/destroying tokens, the `_to` field MUST be set to `0x0`
     *   The total amount transferred from address 0x0 minus the total amount transferred to 0x0 may be used by clients and exchanges to be added to the "circulating supply" for a given token ID
     *   To broadcast the existence of a token ID with no initial balance, the contract SHOULD emit the TransferSingle event from `0x0` to `0x0`, with the token creator as `_operator`, and a `_amount` of 0
     */
    event TransferSingle(address indexed _operator, address indexed _from, address indexed _to, uint256 _id, uint256 _amount);

    /**
     * @dev Either TransferSingle or TransferBatch MUST emit when tokens are transferred, including zero amount transfers as well as minting or burning
     *   Operator MUST be msg.sender
     *   When minting/creating tokens, the `_from` field MUST be set to `0x0`
     *   When burning/destroying tokens, the `_to` field MUST be set to `0x0`
     *   The total amount transferred from address 0x0 minus the total amount transferred to 0x0 may be used by clients and exchanges to be added to the "circulating supply" for a given token ID
     *   To broadcast the existence of multiple token IDs with no initial balance, this SHOULD emit the TransferBatch event from `0x0` to `0x0`, with the token creator as `_operator`, and a `_amount` of 0
     */
    event TransferBatch(address indexed _operator, address indexed _from, address indexed _to, uint256[] _ids, uint256[] _amounts);

    /**
     * @dev MUST emit when an approval is updated
     */
    event ApprovalForAll(address indexed _owner, address indexed _operator, bool _approved);

    /**
     * @dev MUST emit when the URI is updated for a token ID
     *   URIs are defined in RFC 3986
     *   The URI MUST point a JSON file that conforms to the "ERC-1155 Metadata JSON Schema"
     */
    event URI(string _amount, uint256 indexed _id);

    /**
     * @notice Transfers amount of an _id from the _from address to the _to address specified
     * @dev MUST emit TransferSingle event on success
     * Caller must be approved to manage the _from account's tokens (see isApprovedForAll)
     * MUST throw if `_to` is the zero address
     * MUST throw if balance of sender for token `_id` is lower than the `_amount` sent
     * MUST throw on any other error
     * When transfer is complete, this function MUST check if `_to` is a smart contract (code size > 0). If so, it MUST call `onERC1155Received` on `_to` and revert if the return amount is not `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
     * @param _from    Source address
     * @param _to      Target address
     * @param _id      ID of the token type
     * @param _amount  Transfered amount
     * @param _data    Additional data with no specified format, sent in call to `_to`
     */
    function safeTransferFrom(address _from, address _to, uint256 _id, uint256 _amount, bytes calldata _data) external;

    /**
     * @notice Send multiple types of Tokens from the _from address to the _to address (with safety call)
     * @dev MUST emit TransferBatch event on success
     * Caller must be approved to manage the _from account's tokens (see isApprovedForAll)
     * MUST throw if `_to` is the zero address
     * MUST throw if length of `_ids` is not the same as length of `_amounts`
     * MUST throw if any of the balance of sender for token `_ids` is lower than the respective `_amounts` sent
     * MUST throw on any other error
     * When transfer is complete, this function MUST check if `_to` is a smart contract (code size > 0). If so, it MUST call `onERC1155BatchReceived` on `_to` and revert if the return amount is not `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
     * Transfers and events MUST occur in the array order they were submitted (_ids[0] before _ids[1], etc)
     * @param _from     Source addresses
     * @param _to       Target addresses
     * @param _ids      IDs of each token type
     * @param _amounts  Transfer amounts per token type
     * @param _data     Additional data with no specified format, sent in call to `_to`
    */
    function safeBatchTransferFrom(address _from, address _to, uint256[] calldata _ids, uint256[] calldata _amounts, bytes calldata _data) external;

    /**
     * @notice Get the balance of an account's Tokens
     * @param _owner  The address of the token holder
     * @param _id     ID of the Token
     * @return        The _owner's balance of the Token type requested
     */
    function balanceOf(address _owner, uint256 _id) external view returns (uint256);

    /**
     * @notice Get the balance of multiple account/token pairs
     * @param _owners The addresses of the token holders
     * @param _ids    ID of the Tokens
     * @return        The _owner's balance of the Token types requested (i.e. balance for each (owner, id) pair)
     */
    function balanceOfBatch(address[] calldata _owners, uint256[] calldata _ids) external view returns (uint256[] memory);

    /**
     * @notice Enable or disable approval for a third party ("operator") to manage all of caller's tokens
     * @dev MUST emit the ApprovalForAll event on success
     * @param _operator  Address to add to the set of authorized operators
     * @param _approved  True if the operator is approved, false to revoke approval
     */
    function setApprovalForAll(address _operator, bool _approved) external;

    /**
     * @notice Queries the approval status of an operator for a given owner
     * @param _owner     The owner of the Tokens
     * @param _operator  Address of authorized operator
     * @return           True if the operator is approved, false if not
     */
    function isApprovedForAll(address _owner, address _operator) external view returns (bool isOperator);

}

/**
 * Copyright 2018 ZeroEx Intl.
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *   http://www.apache.org/licenses/LICENSE-2.0
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
/**
 * Utility library of inline functions on addresses
 */
library Address {

    /**
     * Returns whether the target address is a contract
     * @dev This function will return false if invoked during the constructor of a contract,
     * as the code is not actually created until after the constructor finishes.
     * @param account address of the account to check
     * @return whether the target address is a contract
     */
    function isContract(address account) internal view returns (bool) {
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;

        // XXX Currently there is no better way to check if there is a contract in an address
        // than to check the size of the code at that address.
        // See https://ethereum.stackexchange.com/a/14016/36603
        // for more details about how this works.
        // TODO Check this again before the Serenity release, because all addresses will be
        // contracts then.
        assembly { codehash := extcodehash(account) }
        return (codehash != 0x0 && codehash != accountHash);
    }

}

/**
 * @dev Implementation of Multi-Token Standard contract
 */
contract ERC1155 is IERC165 {
    using SafeMath for uint256;
    using Address for address;


    /***********************************|
    |        Variables and Events       |
    |__________________________________*/

    // onReceive function signatures
    bytes4 constant internal ERC1155_RECEIVED_VALUE = 0xf23a6e61;
    bytes4 constant internal ERC1155_BATCH_RECEIVED_VALUE = 0xbc197c81;

    // Objects balances
    mapping (address => mapping(uint256 => uint256)) internal balances;

    // Operator Functions
    mapping (address => mapping(address => bool)) internal operators;

    // Events
    event TransferSingle(address indexed _operator, address indexed _from, address indexed _to, uint256 _id, uint256 _amount);
    event TransferBatch(address indexed _operator, address indexed _from, address indexed _to, uint256[] _ids, uint256[] _amounts);
    event ApprovalForAll(address indexed _owner, address indexed _operator, bool _approved);
    event URI(string _uri, uint256 indexed _id);


    /***********************************|
    |     Public Transfer Functions     |
    |__________________________________*/

    /**
     * @notice Transfers amount amount of an _id from the _from address to the _to address specified
     * @param _from    Source address
     * @param _to      Target address
     * @param _id      ID of the token type
     * @param _amount  Transfered amount
     * @param _data    Additional data with no specified format, sent in call to `_to`
     */
    function safeTransferFrom(address _from, address _to, uint256 _id, uint256 _amount, bytes memory _data)
    public
    {
        require((msg.sender == _from) || isApprovedForAll(_from, msg.sender), "ERC1155#safeTransferFrom: INVALID_OPERATOR");
        require(_to != address(0),"ERC1155#safeTransferFrom: INVALID_RECIPIENT");
        // require(_amount >= balances[_from][_id]) is not necessary since checked with safemath operations

        _safeTransferFrom(_from, _to, _id, _amount);
        _callonERC1155Received(_from, _to, _id, _amount, _data);
    }

    /**
     * @notice Send multiple types of Tokens from the _from address to the _to address (with safety call)
     * @param _from     Source addresses
     * @param _to       Target addresses
     * @param _ids      IDs of each token type
     * @param _amounts  Transfer amounts per token type
     * @param _data     Additional data with no specified format, sent in call to `_to`
     */
    function safeBatchTransferFrom(address _from, address _to, uint256[] memory _ids, uint256[] memory _amounts, bytes memory _data)
    public
    {
        // Requirements
        require((msg.sender == _from) || isApprovedForAll(_from, msg.sender), "ERC1155#safeBatchTransferFrom: INVALID_OPERATOR");
        require(_to != address(0), "ERC1155#safeBatchTransferFrom: INVALID_RECIPIENT");

        _safeBatchTransferFrom(_from, _to, _ids, _amounts);
        _callonERC1155BatchReceived(_from, _to, _ids, _amounts, _data);
    }


    /***********************************|
    |    Internal Transfer Functions    |
    |__________________________________*/

    /**
     * @notice Transfers amount amount of an _id from the _from address to the _to address specified
     * @param _from    Source address
     * @param _to      Target address
     * @param _id      ID of the token type
     * @param _amount  Transfered amount
     */
    function _safeTransferFrom(address _from, address _to, uint256 _id, uint256 _amount)
    internal
    {
        // Update balances
        balances[_from][_id] = balances[_from][_id].sub(_amount); // Subtract amount
        balances[_to][_id] = balances[_to][_id].add(_amount);     // Add amount

        // Emit event
        emit TransferSingle(msg.sender, _from, _to, _id, _amount);
    }

    /**
     * @notice Verifies if receiver is contract and if so, calls (_to).onERC1155Received(...)
     */
    function _callonERC1155Received(address _from, address _to, uint256 _id, uint256 _amount, bytes memory _data)
    internal
    {
        // Check if recipient is contract
        if (_to.isContract()) {
            bytes4 retval = IERC1155TokenReceiver(_to).onERC1155Received(msg.sender, _from, _id, _amount, _data);
            require(retval == ERC1155_RECEIVED_VALUE, "ERC1155#_callonERC1155Received: INVALID_ON_RECEIVE_MESSAGE");
        }
    }

    /**
     * @notice Send multiple types of Tokens from the _from address to the _to address (with safety call)
     * @param _from     Source addresses
     * @param _to       Target addresses
     * @param _ids      IDs of each token type
     * @param _amounts  Transfer amounts per token type
     */
    function _safeBatchTransferFrom(address _from, address _to, uint256[] memory _ids, uint256[] memory _amounts)
    internal
    {
        require(_ids.length == _amounts.length, "ERC1155#_safeBatchTransferFrom: INVALID_ARRAYS_LENGTH");

        // Number of transfer to execute
        uint256 nTransfer = _ids.length;

        // Executing all transfers
        for (uint256 i = 0; i < nTransfer; i++) {
            // Update storage balance of previous bin
            balances[_from][_ids[i]] = balances[_from][_ids[i]].sub(_amounts[i]);
            balances[_to][_ids[i]] = balances[_to][_ids[i]].add(_amounts[i]);
        }

        // Emit event
        emit TransferBatch(msg.sender, _from, _to, _ids, _amounts);
    }

    /**
     * @notice Verifies if receiver is contract and if so, calls (_to).onERC1155BatchReceived(...)
     */
    function _callonERC1155BatchReceived(address _from, address _to, uint256[] memory _ids, uint256[] memory _amounts, bytes memory _data)
    internal
    {
        // Pass data if recipient is contract
        if (_to.isContract()) {
            bytes4 retval = IERC1155TokenReceiver(_to).onERC1155BatchReceived(msg.sender, _from, _ids, _amounts, _data);
            require(retval == ERC1155_BATCH_RECEIVED_VALUE, "ERC1155#_callonERC1155BatchReceived: INVALID_ON_RECEIVE_MESSAGE");
        }
    }


    /***********************************|
    |         Operator Functions        |
    |__________________________________*/

    /**
     * @notice Enable or disable approval for a third party ("operator") to manage all of caller's tokens
     * @param _operator  Address to add to the set of authorized operators
     * @param _approved  True if the operator is approved, false to revoke approval
     */
    function setApprovalForAll(address _operator, bool _approved)
    external
    {
        // Update operator status
        operators[msg.sender][_operator] = _approved;
        emit ApprovalForAll(msg.sender, _operator, _approved);
    }

    /**
     * @notice Queries the approval status of an operator for a given owner
     * @param _owner     The owner of the Tokens
     * @param _operator  Address of authorized operator
     * @return True if the operator is approved, false if not
     */
    function isApprovedForAll(address _owner, address _operator)
    public view returns (bool isOperator)
    {
        return operators[_owner][_operator];
    }


    /***********************************|
    |         Balance Functions         |
    |__________________________________*/

    /**
     * @notice Get the balance of an account's Tokens
     * @param _owner  The address of the token holder
     * @param _id     ID of the Token
     * @return The _owner's balance of the Token type requested
     */
    function balanceOf(address _owner, uint256 _id)
    public view returns (uint256)
    {
        return balances[_owner][_id];
    }

    /**
     * @notice Get the balance of multiple account/token pairs
     * @param _owners The addresses of the token holders
     * @param _ids    ID of the Tokens
     * @return        The _owner's balance of the Token types requested (i.e. balance for each (owner, id) pair)
     */
    function balanceOfBatch(address[] memory _owners, uint256[] memory _ids)
    public view returns (uint256[] memory)
    {
        require(_owners.length == _ids.length, "ERC1155#balanceOfBatch: INVALID_ARRAY_LENGTH");

        // Variables
        uint256[] memory batchBalances = new uint256[](_owners.length);

        // Iterate over each owner and token ID
        for (uint256 i = 0; i < _owners.length; i++) {
            batchBalances[i] = balances[_owners[i]][_ids[i]];
        }

        return batchBalances;
    }


    /***********************************|
    |          ERC165 Functions         |
    |__________________________________*/

    /**
     * INTERFACE_SIGNATURE_ERC165 = bytes4(keccak256("supportsInterface(bytes4)"));
     */
    bytes4 constant private INTERFACE_SIGNATURE_ERC165 = 0x01ffc9a7;

    /**
     * INTERFACE_SIGNATURE_ERC1155 =
     * bytes4(keccak256("safeTransferFrom(address,address,uint256,uint256,bytes)")) ^
     * bytes4(keccak256("safeBatchTransferFrom(address,address,uint256[],uint256[],bytes)")) ^
     * bytes4(keccak256("balanceOf(address,uint256)")) ^
     * bytes4(keccak256("balanceOfBatch(address[],uint256[])")) ^
     * bytes4(keccak256("setApprovalForAll(address,bool)")) ^
     * bytes4(keccak256("isApprovedForAll(address,address)"));
     */
    bytes4 constant private INTERFACE_SIGNATURE_ERC1155 = 0xd9b67a26;

    /**
     * @notice Query if a contract implements an interface
     * @param _interfaceID  The interface identifier, as specified in ERC-165
     * @return `true` if the contract implements `_interfaceID` and
     */
    function supportsInterface(bytes4 _interfaceID) external view returns (bool) {
        if (_interfaceID == INTERFACE_SIGNATURE_ERC165 ||
            _interfaceID == INTERFACE_SIGNATURE_ERC1155) {
            return true;
        }
        return false;
    }

}

/**
 * @notice Contract that handles metadata related methods.
 * @dev Methods assume a deterministic generation of URI based on token IDs.
 *      Methods also assume that URI uses hex representation of token IDs.
 */
contract ERC1155Metadata {

    // URI's default URI prefix
    string internal baseMetadataURI;
    event URI(string _uri, uint256 indexed _id);


    /***********************************|
    |     Metadata Public Function s    |
    |__________________________________*/

    /**
     * @notice A distinct Uniform Resource Identifier (URI) for a given token.
     * @dev URIs are defined in RFC 3986.
     *      URIs are assumed to be deterministically generated based on token ID
     *      Token IDs are assumed to be represented in their hex format in URIs
     * @return URI string
     */
    function uri(uint256 _id) public view returns (string memory) {
        return string(abi.encodePacked(baseMetadataURI, _uint2str(_id), ".json"));
    }


    /***********************************|
    |    Metadata Internal Functions    |
    |__________________________________*/

    /**
     * @notice Will emit default URI log event for corresponding token _id
     * @param _tokenIDs Array of IDs of tokens to log default URI
     */
    function _logURIs(uint256[] memory _tokenIDs) internal {
        string memory baseURL = baseMetadataURI;
        string memory tokenURI;

        for (uint256 i = 0; i < _tokenIDs.length; i++) {
            tokenURI = string(abi.encodePacked(baseURL, _uint2str(_tokenIDs[i]), ".json"));
            emit URI(tokenURI, _tokenIDs[i]);
        }
    }

    /**
     * @notice Will emit a specific URI log event for corresponding token
     * @param _tokenIDs IDs of the token corresponding to the _uris logged
     * @param _URIs    The URIs of the specified _tokenIDs
     */
    function _logURIs(uint256[] memory _tokenIDs, string[] memory _URIs) internal {
        require(_tokenIDs.length == _URIs.length, "ERC1155Metadata#_logURIs: INVALID_ARRAYS_LENGTH");
        for (uint256 i = 0; i < _tokenIDs.length; i++) {
            emit URI(_URIs[i], _tokenIDs[i]);
        }
    }

    /**
     * @notice Will update the base URL of token's URI
     * @param _newBaseMetadataURI New base URL of token's URI
     */
    function _setBaseMetadataURI(string memory _newBaseMetadataURI) internal {
        baseMetadataURI = _newBaseMetadataURI;
    }


    /***********************************|
    |    Utility Internal Functions     |
    |__________________________________*/

    /**
     * @notice Convert uint256 to string
     * @param _i Unsigned integer to convert to string
     */
    function _uint2str(uint256 _i) internal pure returns (string memory _uintAsString) {
        if (_i == 0) {
            return "0";
        }

        uint256 j = _i;
        uint256 ii = _i;
        uint256 len;

        // Get number of bytes
        while (j != 0) {
            len++;
            j /= 10;
        }

        bytes memory bstr = new bytes(len);
        uint256 k = len - 1;

        // Get each individual ASCII
        while (ii != 0) {
            bstr[k--] = byte(uint8(48 + ii % 10));
            ii /= 10;
        }

        // Convert to string
        return string(bstr);
    }

}

/**
 * @dev Multi-Fungible Tokens with minting and burning methods. These methods assume
 *      a parent contract to be executed as they are `internal` functions
 */
contract ERC1155MintBurn is ERC1155 {


    /****************************************|
    |            Minting Functions           |
    |_______________________________________*/

    /**
     * @notice Mint _amount of tokens of a given id
     * @param _to      The address to mint tokens to
     * @param _id      Token id to mint
     * @param _amount  The amount to be minted
     * @param _data    Data to pass if receiver is contract
     */
    function _mint(address _to, uint256 _id, uint256 _amount, bytes memory _data)
    internal
    {
        // Add _amount
        balances[_to][_id] = balances[_to][_id].add(_amount);

        // Emit event
        emit TransferSingle(msg.sender, address(0x0), _to, _id, _amount);

        // Calling onReceive method if recipient is contract
        _callonERC1155Received(address(0x0), _to, _id, _amount, _data);
    }

    /**
     * @notice Mint tokens for each ids in _ids
     * @param _to       The address to mint tokens to
     * @param _ids      Array of ids to mint
     * @param _amounts  Array of amount of tokens to mint per id
     * @param _data    Data to pass if receiver is contract
     */
    function _batchMint(address _to, uint256[] memory _ids, uint256[] memory _amounts, bytes memory _data)
    internal
    {
        require(_ids.length == _amounts.length, "ERC1155MintBurn#batchMint: INVALID_ARRAYS_LENGTH");

        // Number of mints to execute
        uint256 nMint = _ids.length;

        // Executing all minting
        for (uint256 i = 0; i < nMint; i++) {
            // Update storage balance
            balances[_to][_ids[i]] = balances[_to][_ids[i]].add(_amounts[i]);
        }

        // Emit batch mint event
        emit TransferBatch(msg.sender, address(0x0), _to, _ids, _amounts);

        // Calling onReceive method if recipient is contract
        _callonERC1155BatchReceived(address(0x0), _to, _ids, _amounts, _data);
    }


    /****************************************|
    |            Burning Functions           |
    |_______________________________________*/

    /**
     * @notice Burn _amount of tokens of a given token id
     * @param _from    The address to burn tokens from
     * @param _id      Token id to burn
     * @param _amount  The amount to be burned
     */
    function _burn(address _from, uint256 _id, uint256 _amount)
    internal
    {
        //Substract _amount
        balances[_from][_id] = balances[_from][_id].sub(_amount);

        // Emit event
        emit TransferSingle(msg.sender, _from, address(0x0), _id, _amount);
    }

    /**
     * @notice Burn tokens of given token id for each (_ids[i], _amounts[i]) pair
     * @param _from     The address to burn tokens from
     * @param _ids      Array of token ids to burn
     * @param _amounts  Array of the amount to be burned
     */
    function _batchBurn(address _from, uint256[] memory _ids, uint256[] memory _amounts)
    internal
    {
        require(_ids.length == _amounts.length, "ERC1155MintBurn#batchBurn: INVALID_ARRAYS_LENGTH");

        // Number of mints to execute
        uint256 nBurn = _ids.length;

        // Executing all minting
        for (uint256 i = 0; i < nBurn; i++) {
            // Update storage balance
            balances[_from][_ids[i]] = balances[_from][_ids[i]].sub(_amounts[i]);
        }

        // Emit batch mint event
        emit TransferBatch(msg.sender, _from, address(0x0), _ids, _amounts);
    }

}

library Strings {
    // via https://github.com/oraclize/ethereum-api/blob/master/oraclizeAPI_0.5.sol
    function strConcat(
        string memory _a,
        string memory _b,
        string memory _c,
        string memory _d,
        string memory _e
    ) internal pure returns (string memory) {
        bytes memory _ba = bytes(_a);
        bytes memory _bb = bytes(_b);
        bytes memory _bc = bytes(_c);
        bytes memory _bd = bytes(_d);
        bytes memory _be = bytes(_e);
        string memory abcde = new string(_ba.length + _bb.length + _bc.length + _bd.length + _be.length);
        bytes memory babcde = bytes(abcde);
        uint256 k = 0;
        for (uint256 i = 0; i < _ba.length; i++) babcde[k++] = _ba[i];
        for (uint256 i = 0; i < _bb.length; i++) babcde[k++] = _bb[i];
        for (uint256 i = 0; i < _bc.length; i++) babcde[k++] = _bc[i];
        for (uint256 i = 0; i < _bd.length; i++) babcde[k++] = _bd[i];
        for (uint256 i = 0; i < _be.length; i++) babcde[k++] = _be[i];
        return string(babcde);
    }

    function strConcat(
        string memory _a,
        string memory _b,
        string memory _c,
        string memory _d
    ) internal pure returns (string memory) {
        return strConcat(_a, _b, _c, _d, "");
    }

    function strConcat(
        string memory _a,
        string memory _b,
        string memory _c
    ) internal pure returns (string memory) {
        return strConcat(_a, _b, _c, "", "");
    }

    function strConcat(string memory _a, string memory _b) internal pure returns (string memory) {
        return strConcat(_a, _b, "", "", "");
    }

    function uint2str(uint256 _i) internal pure returns (string memory _uintAsString) {
        if (_i == 0) {
            return "0";
        }
        uint256 j = _i;
        uint256 len;
        while (j != 0) {
            len++;
            j /= 10;
        }
        bytes memory bstr = new bytes(len);
        uint256 k = len - 1;
        while (_i != 0) {
            bstr[k--] = bytes1(uint8(48 + (_i % 10)));
            _i /= 10;
        }
        return string(bstr);
    }
}

contract OwnableDelegateProxy {}

contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

/**
 * @title ERC1155Tradable
 * ERC1155Tradable - ERC1155 contract that whitelists an operator address,
 * has create and mint functionality, and supports useful standards from OpenZeppelin,
  like _exists(), name(), symbol(), and totalSupply()
 */
contract ERC1155Tradable is ERC1155, ERC1155MintBurn, ERC1155Metadata, Ownable, MinterRole, WhitelistAdminRole {
    using Strings for string;

    address proxyRegistryAddress;
    uint256 private _currentTokenID = 0;
    mapping(uint256 => address) public creators;
    mapping(uint256 => uint256) public tokenSupply;
    mapping(uint256 => uint256) public tokenMaxSupply;
    // Contract name
    string public name;
    // Contract symbol
    string public symbol;

    constructor(
        string memory _name,
        string memory _symbol,
        address _proxyRegistryAddress
    ) public {
        name = _name;
        symbol = _symbol;
        proxyRegistryAddress = _proxyRegistryAddress;
    }

    function removeWhitelistAdmin(address account) public onlyOwner {
        _removeWhitelistAdmin(account);
    }

    function removeMinter(address account) public onlyOwner {
        _removeMinter(account);
    }

    function uri(uint256 _id) public view returns (string memory) {
        require(_exists(_id), "ERC721Tradable#uri: NONEXISTENT_TOKEN");
        return Strings.strConcat(baseMetadataURI, Strings.uint2str(_id));
    }

    /**
     * @dev Returns the total quantity for a token ID
     * @param _id uint256 ID of the token to query
     * @return amount of token in existence
     */
    function totalSupply(uint256 _id) public view returns (uint256) {
        return tokenSupply[_id];
    }

    /**
     * @dev Returns the max quantity for a token ID
     * @param _id uint256 ID of the token to query
     * @return amount of token in existence
     */
    function maxSupply(uint256 _id) public view returns (uint256) {
        return tokenMaxSupply[_id];
    }

    /**
     * @dev Will update the base URL of token's URI
     * @param _newBaseMetadataURI New base URL of token's URI
     */
    function setBaseMetadataURI(string memory _newBaseMetadataURI) public onlyWhitelistAdmin {
        _setBaseMetadataURI(_newBaseMetadataURI);
    }

    /**
     * @dev Creates a new token type and assigns _initialSupply to an address
     * @param _maxSupply max supply allowed
     * @param _initialSupply Optional amount to supply the first owner
     * @param _uri Optional URI for this token type
     * @param _data Optional data to pass if receiver is contract
     * @return The newly created token ID
     */
    function create(
        uint256 _maxSupply,
        uint256 _initialSupply,
        string calldata _uri,
        bytes calldata _data
    ) external onlyWhitelistAdmin returns (uint256 tokenId) {
        require(_initialSupply <= _maxSupply, "Initial supply cannot be more than max supply");
        uint256 _id = _getNextTokenID();
        _incrementTokenTypeId();
        creators[_id] = msg.sender;

        if (bytes(_uri).length > 0) {
            emit URI(_uri, _id);
        }

        if (_initialSupply != 0) _mint(msg.sender, _id, _initialSupply, _data);
        tokenSupply[_id] = _initialSupply;
        tokenMaxSupply[_id] = _maxSupply;
        return _id;
    }

    /**
     * @dev Mints some amount of tokens to an address
     * @param _to          Address of the future owner of the token
     * @param _id          Token ID to mint
     * @param _quantity    Amount of tokens to mint
     * @param _data        Data to pass if receiver is contract
     */
    function mint(
        address _to,
        uint256 _id,
        uint256 _quantity,
        bytes memory _data
    ) public onlyMinter {
        uint256 tokenId = _id;
        uint256 newSupply = tokenSupply[tokenId].add(_quantity);
        require(newSupply <= tokenMaxSupply[tokenId], "Max supply reached");
        _mint(_to, _id, _quantity, _data);
        tokenSupply[_id] = tokenSupply[_id].add(_quantity);
    }

    /**
     * Override isApprovedForAll to whitelist user's OpenSea proxy accounts to enable gas-free listings - The Beano of NFTs
     */
    function isApprovedForAll(address _owner, address _operator) public view returns (bool isOperator) {
        // Whitelist OpenSea proxy contract for easy trading.
        ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
        if (address(proxyRegistry.proxies(_owner)) == _operator) {
            return true;
        }

        return ERC1155.isApprovedForAll(_owner, _operator);
    }

    /**
     * @dev Returns whether the specified token exists by checking to see if it has a creator
     * @param _id uint256 ID of the token to query the existence of
     * @return bool whether the token exists
     */
    function _exists(uint256 _id) internal view returns (bool) {
        return creators[_id] != address(0);
    }

    /**
     * @dev calculates the next token ID based on value of _currentTokenID
     * @return uint256 for the next token ID
     */
    function _getNextTokenID() private view returns (uint256) {
        return _currentTokenID.add(1);
    }

    /**
     * @dev increments the value of _currentTokenID
     */
    function _incrementTokenTypeId() private {
        _currentTokenID++;
    }
}

/**
 * @title Rope Makers United
 * RMU - Seriously as Professional Rope Makers, Don't Buy Rope
 */
contract RMU is ERC1155Tradable {
    string private _contractURI;

    constructor(address _proxyRegistryAddress) public ERC1155Tradable("Rope Makers United", "RMU", _proxyRegistryAddress) {
        _setBaseMetadataURI("https://rope.lol/api/RMU/");
        _contractURI = "https://rope.lol/api/hopes-erc1155";
    }

    function setBaseMetadataURI(string memory newURI) public onlyWhitelistAdmin {
        _setBaseMetadataURI(newURI);
    }

    function setContractURI(string memory newURI) public onlyWhitelistAdmin {
        _contractURI = newURI;
    }

    function contractURI() public view returns (string memory) {
        return _contractURI;
    }

    /**
	 * @dev Ends minting of token
	 * @param _id          Token ID for which minting will end
	 */
    function endMinting(uint256 _id) external onlyWhitelistAdmin {
        tokenMaxSupply[_id] = tokenSupply[_id];
    }

    function burn(address _account, uint256 _id, uint256 _amount) public onlyMinter {
        require(balanceOf(_account, _id) >= _amount, "Cannot burn more than addres has");
        _burn(_account, _id, _amount);
    }

    /**
    * Mint NFT and send those to the list of given addresses
    */
    function airdrop(uint256 _id, address[] memory _addresses) public onlyMinter {
        require(tokenMaxSupply[_id] - tokenSupply[_id] >= _addresses.length, "Cant mint above max supply");
        for (uint256 i = 0; i < _addresses.length; i++) {
            mint(_addresses[i], _id, 1, "");
        }
    }
}

/*
Constructor Argument To Add During Deployment
OpenSea Registry Address
000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1

0xa5409ec958c83c3f309868babaca7c86dcb077c1
*/

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_proxyRegistryAddress","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_owner","type":"address"},{"indexed":true,"internalType":"address","name":"_operator","type":"address"},{"indexed":false,"internalType":"bool","name":"_approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"MinterAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"MinterRemoved","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":"_operator","type":"address"},{"indexed":true,"internalType":"address","name":"_from","type":"address"},{"indexed":true,"internalType":"address","name":"_to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"_ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"_amounts","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_operator","type":"address"},{"indexed":true,"internalType":"address","name":"_from","type":"address"},{"indexed":true,"internalType":"address","name":"_to","type":"address"},{"indexed":false,"internalType":"uint256","name":"_id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"_uri","type":"string"},{"indexed":true,"internalType":"uint256","name":"_id","type":"uint256"}],"name":"URI","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"WhitelistAdminAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"WhitelistAdminRemoved","type":"event"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addWhitelistAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"airdrop","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address[]","name":"_owners","type":"address[]"},{"internalType":"uint256[]","name":"_ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"uint256","name":"_initialSupply","type":"uint256"},{"internalType":"string","name":"_uri","type":"string"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"create","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"creators","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"endMinting","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"isOperator","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isWhitelistAdmin","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"mint","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeWhitelistAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceWhitelistAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256[]","name":"_ids","type":"uint256[]"},{"internalType":"uint256[]","name":"_amounts","type":"uint256[]"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_operator","type":"address"},{"internalType":"bool","name":"_approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"string","name":"newURI","type":"string"}],"name":"setBaseMetadataURI","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"string","name":"newURI","type":"string"}],"name":"setContractURI","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"bytes4","name":"_interfaceID","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"}]

608060405260006007553480156200001657600080fd5b5060405162004ca138038062004ca1833981810160405260208110156200003c57600080fd5b81019080805190602001909291905050506040518060400160405280601281526020017f526f7065204d616b65727320556e6974656400000000000000000000000000008152506040518060400160405280600381526020017f524d550000000000000000000000000000000000000000000000000000000000815250826000620000cc620002a060201b60201c565b905080600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506200018b6200017f620002a060201b60201c565b620002a860201b60201c565b620001ab6200019f620002a060201b60201c565b6200030960201b60201c565b82600b9080519060200190620001c39291906200054a565b5081600c9080519060200190620001dc9291906200054a565b5080600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505050620002676040518060400160405280601981526020017f68747470733a2f2f726f70652e6c6f6c2f6170692f524d552f000000000000008152506200036a60201b60201c565b60405180606001604052806022815260200162004c5d60229139600d9080519060200190620002989291906200054a565b5050620005f9565b600033905090565b620002c38160046200038660201b620041e61790919060201c565b8073ffffffffffffffffffffffffffffffffffffffff167f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f660405160405180910390a250565b620003248160056200038660201b620041e61790919060201c565b8073ffffffffffffffffffffffffffffffffffffffff167f22380c05984257a1cb900161c713dd71d39e74820f1aea43bd3f1bdd2096129960405160405180910390a250565b8060029080519060200190620003829291906200054a565b5050565b6200039882826200046a60201b60201c565b156200040c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f526f6c65733a206163636f756e7420616c72656164792068617320726f6c650081525060200191505060405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620004f3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018062004c7f6022913960400191505060405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200058d57805160ff1916838001178555620005be565b82800160010185558215620005be579182015b82811115620005bd578251825591602001919060010190620005a0565b5b509050620005cd9190620005d1565b5090565b620005f691905b80821115620005f2576000816000905550600101620005d8565b5090565b90565b61465480620006096000396000f3fe608060405234801561001057600080fd5b506004361061020f5760003560e01c80638f32d59b11610125578063bb5f747b116100ad578063e8a3d4851161007c578063e8a3d485146110af578063e985e9c514611132578063f242432a146111ae578063f2fde38b146112bd578063f5298aca146113015761020f565b8063bb5f747b14610ee1578063bd85b03914610f3d578063bdf7a8e614610f7f578063cd53d08e146110415761020f565b8063983b2d56116100f4578063983b2d5614610cf15780639865027514610d35578063a22cb46514610d3f578063aa271e1a14610d8f578063b09ddf7b14610deb5761020f565b80638f32d59b14610b63578063938e3d7b14610b8557806394dd286914610c4057806395d89b4114610c6e5761020f565b80634c5a628c116101a8578063731133e911610177578063731133e9146108e95780637362d9c8146109d85780637e518ec814610a1c578063869f759414610ad75780638da5cb5b14610b195761020f565b80634c5a628c146106f05780634e1273f4146106fa5780636897e9741461089b578063715018a6146108df5761020f565b80630e89341c116101e45780630e89341c146103a05780632693ebf2146104475780632eb2c2d6146104895780633092afd5146106ac5761020f565b80624221f014610214578062fdd58e1461025657806301ffc9a7146102b857806306fdde031461031d575b600080fd5b6102406004803603602081101561022a57600080fd5b8101908080359060200190929190505050611359565b6040518082815260200191505060405180910390f35b6102a26004803603604081101561026c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611371565b6040518082815260200191505060405180910390f35b610303600480360360208110156102ce57600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191690602001909291905050506113cb565b604051808215151515815260200191505060405180910390f35b61032561147c565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561036557808201518184015260208101905061034a565b50505050905090810190601f1680156103925780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103cc600480360360208110156103b657600080fd5b810190808035906020019092919050505061151a565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561040c5780820151818401526020810190506103f1565b50505050905090810190601f1680156104395780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6104736004803603602081101561045d57600080fd5b810190808035906020019092919050505061162d565b6040518082815260200191505060405180910390f35b6106aa600480360360a081101561049f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001906401000000008111156104fc57600080fd5b82018360208201111561050e57600080fd5b8035906020019184602083028401116401000000008311171561053057600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505091929192908035906020019064010000000081111561059057600080fd5b8201836020820111156105a257600080fd5b803590602001918460208302840111640100000000831117156105c457600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505091929192908035906020019064010000000081111561062457600080fd5b82018360208201111561063657600080fd5b8035906020019184600183028401116401000000008311171561065857600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611645565b005b6106ee600480360360208110156106c257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611780565b005b6106f8611806565b005b6108446004803603604081101561071057600080fd5b810190808035906020019064010000000081111561072d57600080fd5b82018360208201111561073f57600080fd5b8035906020019184602083028401116401000000008311171561076157600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290803590602001906401000000008111156107c157600080fd5b8201836020820111156107d357600080fd5b803590602001918460208302840111640100000000831117156107f557600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290505050611818565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b8381101561088757808201518184015260208101905061086c565b505050509050019250505060405180910390f35b6108dd600480360360208110156108b157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061195e565b005b6108e76119e4565b005b6109d6600480360360808110156108ff57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190803590602001909291908035906020019064010000000081111561095057600080fd5b82018360208201111561096257600080fd5b8035906020019184600183028401116401000000008311171561098457600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611b1f565b005b610a1a600480360360208110156109ee57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611c8d565b005b610ad560048036036020811015610a3257600080fd5b8101908080359060200190640100000000811115610a4f57600080fd5b820183602082011115610a6157600080fd5b80359060200191846001830284011164010000000083111715610a8357600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611cfe565b005b610b0360048036036020811015610aed57600080fd5b8101908080359060200190929190505050611d6f565b6040518082815260200191505060405180910390f35b610b21611d8c565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610b6b611db6565b604051808215151515815260200191505060405180910390f35b610c3e60048036036020811015610b9b57600080fd5b8101908080359060200190640100000000811115610bb857600080fd5b820183602082011115610bca57600080fd5b80359060200191846001830284011164010000000083111715610bec57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611e15565b005b610c6c60048036036020811015610c5657600080fd5b8101908080359060200190929190505050611e94565b005b610c76611f27565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610cb6578082015181840152602081019050610c9b565b50505050905090810190601f168015610ce35780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610d3360048036036020811015610d0757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611fc5565b005b610d3d612036565b005b610d8d60048036036040811015610d5557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050612048565b005b610dd160048036036020811015610da557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612149565b604051808215151515815260200191505060405180910390f35b610ecb60048036036080811015610e0157600080fd5b81019080803590602001909291908035906020019092919080359060200190640100000000811115610e3257600080fd5b820183602082011115610e4457600080fd5b80359060200191846001830284011164010000000083111715610e6657600080fd5b909192939192939080359060200190640100000000811115610e8757600080fd5b820183602082011115610e9957600080fd5b80359060200191846001830284011164010000000083111715610ebb57600080fd5b9091929391929390505050612166565b6040518082815260200191505060405180910390f35b610f2360048036036020811015610ef757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612394565b604051808215151515815260200191505060405180910390f35b610f6960048036036020811015610f5357600080fd5b81019080803590602001909291905050506123b1565b6040518082815260200191505060405180910390f35b61103f60048036036040811015610f9557600080fd5b810190808035906020019092919080359060200190640100000000811115610fbc57600080fd5b820183602082011115610fce57600080fd5b80359060200191846020830284011164010000000083111715610ff057600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505091929192905050506123ce565b005b61106d6004803603602081101561105757600080fd5b8101908080359060200190929190505050612522565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6110b7612555565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156110f75780820151818401526020810190506110dc565b50505050905090810190601f1680156111245780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6111946004803603604081101561114857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506125f7565b604051808215151515815260200191505060405180910390f35b6112bb600480360360a08110156111c457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190803590602001909291908035906020019064010000000081111561123557600080fd5b82018360208201111561124757600080fd5b8035906020019184600183028401116401000000008311171561126957600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050612728565b005b6112ff600480360360208110156112d357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612863565b005b6113576004803603606081101561131757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190803590602001909291905050506128e9565b005b600a6020528060005260406000206000915090505481565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60006301ffc9a760e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611464575063d9b67a2660e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b156114725760019050611477565b600090505b919050565b600b8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156115125780601f106114e757610100808354040283529160200191611512565b820191906000526020600020905b8154815290600101906020018083116114f557829003601f168201915b505050505081565b6060611525826129dd565b61157a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806144986025913960400191505060405180910390fd5b61162660028054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156116135780601f106115e857610100808354040283529160200191611613565b820191906000526020600020905b8154815290600101906020018083116115f657829003601f168201915b505050505061162184612a49565b612b76565b9050919050565b60096020528060005260406000206000915090505481565b8473ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480611685575061168485336125f7565b5b6116da576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180614578602f913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611760576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806144686030913960400191505060405180910390fd5b61176c85858585612bba565b6117798585858585612f1f565b5050505050565b611788611db6565b6117fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b611803816131da565b50565b611816611811613234565b61323c565b565b60608151835114611874576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c81526020018061454c602c913960400191505060405180910390fd5b606083516040519080825280602002602001820160405280156118a65781602001602082028038833980820191505090505b50905060008090505b8451811015611953576000808683815181106118c757fe5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600085838151811061191757fe5b602002602001015181526020019081526020016000205482828151811061193a57fe5b60200260200101818152505080806001019150506118af565b508091505092915050565b611966611db6565b6119d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6119e18161323c565b50565b6119ec611db6565b611a5e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b611b2f611b2a613234565b612149565b611b84576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806144176030913960400191505060405180910390fd5b60008390506000611bb184600960008581526020019081526020016000205461329690919063ffffffff16565b9050600a600083815260200190815260200160002054811115611c3c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f4d617820737570706c792072656163686564000000000000000000000000000081525060200191505060405180910390fd5b611c488686868661331e565b611c6e84600960008881526020019081526020016000205461329690919063ffffffff16565b6009600087815260200190815260200160002081905550505050505050565b611c9d611c98613234565b612394565b611cf2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252604081526020018061450c6040913960400191505060405180910390fd5b611cfb8161346c565b50565b611d0e611d09613234565b612394565b611d63576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252604081526020018061450c6040913960400191505060405180910390fd5b611d6c816134c6565b50565b6000600a6000838152602001908152602001600020549050919050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611df9613234565b73ffffffffffffffffffffffffffffffffffffffff1614905090565b611e25611e20613234565b612394565b611e7a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252604081526020018061450c6040913960400191505060405180910390fd5b80600d9080519060200190611e909291906142c1565b5050565b611ea4611e9f613234565b612394565b611ef9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252604081526020018061450c6040913960400191505060405180910390fd5b6009600082815260200190815260200160002054600a60008381526020019081526020016000208190555050565b600c8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611fbd5780601f10611f9257610100808354040283529160200191611fbd565b820191906000526020600020905b815481529060010190602001808311611fa057829003601f168201915b505050505081565b611fd5611fd0613234565b612149565b61202a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806144176030913960400191505060405180910390fd5b612033816134e0565b50565b612046612041613234565b6131da565b565b80600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051808215151515815260200191505060405180910390a35050565b600061215f82600461353a90919063ffffffff16565b9050919050565b6000612178612173613234565b612394565b6121cd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252604081526020018061450c6040913960400191505060405180910390fd5b86861115612226576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d8152602001806144bd602d913960400191505060405180910390fd5b6000612230613618565b905061223a613635565b336008600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008686905011156122fd57807f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b878760405180806020018281038252848482818152602001925080828437600081840152601f19601f820116905080830192505050935050505060405180910390a25b600087146123565761235533828987878080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505061331e565b5b86600960008381526020019081526020016000208190555087600a600083815260200190815260200160002081905550809150509695505050505050565b60006123aa82600561353a90919063ffffffff16565b9050919050565b600060096000838152602001908152602001600020549050919050565b6123de6123d9613234565b612149565b612433576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806144176030913960400191505060405180910390fd5b80516009600084815260200190815260200160002054600a6000858152602001908152602001600020540310156124d2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f43616e74206d696e742061626f7665206d617820737570706c7900000000000081525060200191505060405180910390fd5b60008090505b815181101561251d576125108282815181106124f057fe5b602002602001015184600160405180602001604052806000815250611b1f565b80806001019150506124d8565b505050565b60086020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600d8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156125ed5780601f106125c2576101008083540402835291602001916125ed565b820191906000526020600020905b8154815290600101906020018083116125d057829003601f168201915b5050505050905090565b600080600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156126b357600080fd5b505afa1580156126c7573d6000803e3d6000fd5b505050506040513d60208110156126dd57600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff161415612714576001915050612722565b61271e8484613649565b9150505b92915050565b8473ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480612768575061276785336125f7565b5b6127bd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806143b8602a913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612843576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b815260200180614367602b913960400191505060405180910390fd5b61284f858585856136dd565b61285c85858585856138d1565b5050505050565b61286b611db6565b6128dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6128e681613b0a565b50565b6128f96128f4613234565b612149565b61294e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806144176030913960400191505060405180910390fd5b806129598484611371565b10156129cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f43616e6e6f74206275726e206d6f7265207468616e206164647265732068617381525060200191505060405180910390fd5b6129d8838383613c50565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff166008600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60606000821415612a91576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b71565b600082905060005b60008214612abb578080600101915050600a8281612ab357fe5b049150612a99565b6060816040519080825280601f01601f191660200182016040528015612af05781602001600182028038833980820191505090505b50905060006001830390505b60008614612b6957600a8681612b0e57fe5b0660300160f81b82828060019003935081518110612b2857fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8681612b6157fe5b049550612afc565b819450505050505b919050565b6060612bb28383604051806020016040528060008152506040518060200160405280600081525060405180602001604052806000815250613d8f565b905092915050565b8051825114612c14576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260358152602001806143e26035913960400191505060405180910390fd5b60008251905060008090505b81811015612e1157612cb0838281518110612c3757fe5b60200260200101516000808973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000878581518110612c8b57fe5b602002602001015181526020019081526020016000205461405590919063ffffffff16565b6000808873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000868481518110612cfc57fe5b6020026020010151815260200190815260200160002081905550612d9e838281518110612d2557fe5b60200260200101516000808873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000878581518110612d7957fe5b602002602001015181526020019081526020016000205461329690919063ffffffff16565b6000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000868481518110612dea57fe5b60200260200101518152602001908152602001600020819055508080600101915050612c20565b508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b83811015612ec1578082015181840152602081019050612ea6565b50505050905001838103825284818151815260200191508051906020019060200280838360005b83811015612f03578082015181840152602081019050612ee8565b5050505090500194505050505060405180910390a45050505050565b612f3e8473ffffffffffffffffffffffffffffffffffffffff166140de565b156131d35760008473ffffffffffffffffffffffffffffffffffffffff1663bc197c8133888787876040518663ffffffff1660e01b8152600401808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001806020018060200180602001848103845287818151815260200191508051906020019060200280838360005b83811015613024578082015181840152602081019050613009565b50505050905001848103835286818151815260200191508051906020019060200280838360005b8381101561306657808201518184015260208101905061304b565b50505050905001848103825285818151815260200191508051906020019080838360005b838110156130a557808201518184015260208101905061308a565b50505050905090810190601f1680156130d25780820380516001836020036101000a031916815260200191505b5098505050505050505050602060405180830381600087803b1580156130f757600080fd5b505af115801561310b573d6000803e3d6000fd5b505050506040513d602081101561312157600080fd5b8101908080519060200190929190505050905063bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146131d1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603f8152602001806145a7603f913960400191505060405180910390fd5b505b5050505050565b6131ee81600461412990919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669260405160405180910390a250565b600033905090565b61325081600561412990919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f0a8eb35e5ca14b3d6f28e4abf2f128dbab231a58b56e89beb5d636115001e16560405160405180910390a250565b600080828401905083811015613314576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f536166654d617468236164643a204f564552464c4f570000000000000000000081525060200191505060405180910390fd5b8091505092915050565b613380826000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008681526020019081526020016000205461329690919063ffffffff16565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000858152602001908152602001600020819055508373ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628686604051808381526020018281526020019250505060405180910390a46134666000858585856138d1565b50505050565b6134808160056141e690919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f22380c05984257a1cb900161c713dd71d39e74820f1aea43bd3f1bdd2096129960405160405180910390a250565b80600290805190602001906134dc9291906142c1565b5050565b6134f48160046141e690919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f660405160405180910390a250565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156135c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806144ea6022913960400191505060405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000613630600160075461329690919063ffffffff16565b905090565b600760008154809291906001019190505550565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61373f816000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008581526020019081526020016000205461405590919063ffffffff16565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000848152602001908152602001600020819055506137f4816000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008581526020019081526020016000205461329690919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000848152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628585604051808381526020018281526020019250505060405180910390a450505050565b6138f08473ffffffffffffffffffffffffffffffffffffffff166140de565b15613b035760008473ffffffffffffffffffffffffffffffffffffffff1663f23a6e6133888787876040518663ffffffff1660e01b8152600401808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200184815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b838110156139d75780820151818401526020810190506139bc565b50505050905090810190601f168015613a045780820380516001836020036101000a031916815260200191505b509650505050505050602060405180830381600087803b158015613a2757600080fd5b505af1158015613a3b573d6000803e3d6000fd5b505050506040513d6020811015613a5157600080fd5b8101908080519060200190929190505050905063f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614613b01576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603a8152602001806145e6603a913960400191505060405180910390fd5b505b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613b90576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806143926026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b613cb2816000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008581526020019081526020016000205461405590919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628585604051808381526020018281526020019250505060405180910390a4505050565b6060808690506060869050606086905060608690506060869050606081518351855187518951010101016040519080825280601f01601f191660200182016040528015613deb5781602001600182028038833980820191505090505b5090506060819050600080905060008090505b8851811015613e6c57888181518110613e1357fe5b602001015160f81c60f81b838380600101945081518110613e3057fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053508080600101915050613dfe565b5060008090505b8751811015613ee157878181518110613e8857fe5b602001015160f81c60f81b838380600101945081518110613ea557fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053508080600101915050613e73565b5060008090505b8651811015613f5657868181518110613efd57fe5b602001015160f81c60f81b838380600101945081518110613f1a57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053508080600101915050613ee8565b5060008090505b8551811015613fcb57858181518110613f7257fe5b602001015160f81c60f81b838380600101945081518110613f8f57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053508080600101915050613f5d565b5060008090505b845181101561404057848181518110613fe757fe5b602001015160f81c60f81b83838060010194508151811061400457fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053508080600101915050613fd2565b50819850505050505050505095945050505050565b6000828211156140cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f536166654d617468237375623a20554e444552464c4f5700000000000000000081525060200191505060405180910390fd5b600082840390508091505092915050565b60008060007fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47060001b9050833f91506000801b82141580156141205750808214155b92505050919050565b614133828261353a565b614188576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806144476021913960400191505060405180910390fd5b60008260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6141f0828261353a565b15614263576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f526f6c65733a206163636f756e7420616c72656164792068617320726f6c650081525060200191505060405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061430257805160ff1916838001178555614330565b82800160010185558215614330579182015b8281111561432f578251825591602001919060010190614314565b5b50905061433d9190614341565b5090565b61436391905b8082111561435f576000816000905550600101614347565b5090565b9056fe4552433131353523736166655472616e7366657246726f6d3a20494e56414c49445f524543495049454e544f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433131353523736166655472616e7366657246726f6d3a20494e56414c49445f4f50455241544f5245524331313535235f7361666542617463685472616e7366657246726f6d3a20494e56414c49445f4152524159535f4c454e4754484d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c6545524331313535237361666542617463685472616e7366657246726f6d3a20494e56414c49445f524543495049454e544552433732315472616461626c65237572693a204e4f4e4558495354454e545f544f4b454e496e697469616c20737570706c792063616e6e6f74206265206d6f7265207468616e206d617820737570706c79526f6c65733a206163636f756e7420697320746865207a65726f206164647265737357686974656c69737441646d696e526f6c653a2063616c6c657220646f6573206e6f742068617665207468652057686974656c69737441646d696e20726f6c65455243313135352362616c616e63654f6642617463683a20494e56414c49445f41525241595f4c454e47544845524331313535237361666542617463685472616e7366657246726f6d3a20494e56414c49445f4f50455241544f5245524331313535235f63616c6c6f6e45524331313535426174636852656365697665643a20494e56414c49445f4f4e5f524543454956455f4d45535341474545524331313535235f63616c6c6f6e4552433131353552656365697665643a20494e56414c49445f4f4e5f524543454956455f4d455353414745a265627a7a72315820546c76577a914ad4a9bd2f0f08c879ee35a6f1845c6be26ac6c5049fb041d7b264736f6c6343000511003268747470733a2f2f726f70652e6c6f6c2f6170692f686f7065732d65726331313535526f6c65733a206163636f756e7420697320746865207a65726f2061646472657373000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061020f5760003560e01c80638f32d59b11610125578063bb5f747b116100ad578063e8a3d4851161007c578063e8a3d485146110af578063e985e9c514611132578063f242432a146111ae578063f2fde38b146112bd578063f5298aca146113015761020f565b8063bb5f747b14610ee1578063bd85b03914610f3d578063bdf7a8e614610f7f578063cd53d08e146110415761020f565b8063983b2d56116100f4578063983b2d5614610cf15780639865027514610d35578063a22cb46514610d3f578063aa271e1a14610d8f578063b09ddf7b14610deb5761020f565b80638f32d59b14610b63578063938e3d7b14610b8557806394dd286914610c4057806395d89b4114610c6e5761020f565b80634c5a628c116101a8578063731133e911610177578063731133e9146108e95780637362d9c8146109d85780637e518ec814610a1c578063869f759414610ad75780638da5cb5b14610b195761020f565b80634c5a628c146106f05780634e1273f4146106fa5780636897e9741461089b578063715018a6146108df5761020f565b80630e89341c116101e45780630e89341c146103a05780632693ebf2146104475780632eb2c2d6146104895780633092afd5146106ac5761020f565b80624221f014610214578062fdd58e1461025657806301ffc9a7146102b857806306fdde031461031d575b600080fd5b6102406004803603602081101561022a57600080fd5b8101908080359060200190929190505050611359565b6040518082815260200191505060405180910390f35b6102a26004803603604081101561026c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611371565b6040518082815260200191505060405180910390f35b610303600480360360208110156102ce57600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191690602001909291905050506113cb565b604051808215151515815260200191505060405180910390f35b61032561147c565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561036557808201518184015260208101905061034a565b50505050905090810190601f1680156103925780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103cc600480360360208110156103b657600080fd5b810190808035906020019092919050505061151a565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561040c5780820151818401526020810190506103f1565b50505050905090810190601f1680156104395780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6104736004803603602081101561045d57600080fd5b810190808035906020019092919050505061162d565b6040518082815260200191505060405180910390f35b6106aa600480360360a081101561049f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001906401000000008111156104fc57600080fd5b82018360208201111561050e57600080fd5b8035906020019184602083028401116401000000008311171561053057600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505091929192908035906020019064010000000081111561059057600080fd5b8201836020820111156105a257600080fd5b803590602001918460208302840111640100000000831117156105c457600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505091929192908035906020019064010000000081111561062457600080fd5b82018360208201111561063657600080fd5b8035906020019184600183028401116401000000008311171561065857600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611645565b005b6106ee600480360360208110156106c257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611780565b005b6106f8611806565b005b6108446004803603604081101561071057600080fd5b810190808035906020019064010000000081111561072d57600080fd5b82018360208201111561073f57600080fd5b8035906020019184602083028401116401000000008311171561076157600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290803590602001906401000000008111156107c157600080fd5b8201836020820111156107d357600080fd5b803590602001918460208302840111640100000000831117156107f557600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290505050611818565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b8381101561088757808201518184015260208101905061086c565b505050509050019250505060405180910390f35b6108dd600480360360208110156108b157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061195e565b005b6108e76119e4565b005b6109d6600480360360808110156108ff57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190803590602001909291908035906020019064010000000081111561095057600080fd5b82018360208201111561096257600080fd5b8035906020019184600183028401116401000000008311171561098457600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611b1f565b005b610a1a600480360360208110156109ee57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611c8d565b005b610ad560048036036020811015610a3257600080fd5b8101908080359060200190640100000000811115610a4f57600080fd5b820183602082011115610a6157600080fd5b80359060200191846001830284011164010000000083111715610a8357600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611cfe565b005b610b0360048036036020811015610aed57600080fd5b8101908080359060200190929190505050611d6f565b6040518082815260200191505060405180910390f35b610b21611d8c565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610b6b611db6565b604051808215151515815260200191505060405180910390f35b610c3e60048036036020811015610b9b57600080fd5b8101908080359060200190640100000000811115610bb857600080fd5b820183602082011115610bca57600080fd5b80359060200191846001830284011164010000000083111715610bec57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611e15565b005b610c6c60048036036020811015610c5657600080fd5b8101908080359060200190929190505050611e94565b005b610c76611f27565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610cb6578082015181840152602081019050610c9b565b50505050905090810190601f168015610ce35780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610d3360048036036020811015610d0757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611fc5565b005b610d3d612036565b005b610d8d60048036036040811015610d5557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050612048565b005b610dd160048036036020811015610da557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612149565b604051808215151515815260200191505060405180910390f35b610ecb60048036036080811015610e0157600080fd5b81019080803590602001909291908035906020019092919080359060200190640100000000811115610e3257600080fd5b820183602082011115610e4457600080fd5b80359060200191846001830284011164010000000083111715610e6657600080fd5b909192939192939080359060200190640100000000811115610e8757600080fd5b820183602082011115610e9957600080fd5b80359060200191846001830284011164010000000083111715610ebb57600080fd5b9091929391929390505050612166565b6040518082815260200191505060405180910390f35b610f2360048036036020811015610ef757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612394565b604051808215151515815260200191505060405180910390f35b610f6960048036036020811015610f5357600080fd5b81019080803590602001909291905050506123b1565b6040518082815260200191505060405180910390f35b61103f60048036036040811015610f9557600080fd5b810190808035906020019092919080359060200190640100000000811115610fbc57600080fd5b820183602082011115610fce57600080fd5b80359060200191846020830284011164010000000083111715610ff057600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505091929192905050506123ce565b005b61106d6004803603602081101561105757600080fd5b8101908080359060200190929190505050612522565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6110b7612555565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156110f75780820151818401526020810190506110dc565b50505050905090810190601f1680156111245780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6111946004803603604081101561114857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506125f7565b604051808215151515815260200191505060405180910390f35b6112bb600480360360a08110156111c457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190803590602001909291908035906020019064010000000081111561123557600080fd5b82018360208201111561124757600080fd5b8035906020019184600183028401116401000000008311171561126957600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050612728565b005b6112ff600480360360208110156112d357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612863565b005b6113576004803603606081101561131757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190803590602001909291905050506128e9565b005b600a6020528060005260406000206000915090505481565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60006301ffc9a760e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611464575063d9b67a2660e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b156114725760019050611477565b600090505b919050565b600b8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156115125780601f106114e757610100808354040283529160200191611512565b820191906000526020600020905b8154815290600101906020018083116114f557829003601f168201915b505050505081565b6060611525826129dd565b61157a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806144986025913960400191505060405180910390fd5b61162660028054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156116135780601f106115e857610100808354040283529160200191611613565b820191906000526020600020905b8154815290600101906020018083116115f657829003601f168201915b505050505061162184612a49565b612b76565b9050919050565b60096020528060005260406000206000915090505481565b8473ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480611685575061168485336125f7565b5b6116da576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180614578602f913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611760576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806144686030913960400191505060405180910390fd5b61176c85858585612bba565b6117798585858585612f1f565b5050505050565b611788611db6565b6117fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b611803816131da565b50565b611816611811613234565b61323c565b565b60608151835114611874576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c81526020018061454c602c913960400191505060405180910390fd5b606083516040519080825280602002602001820160405280156118a65781602001602082028038833980820191505090505b50905060008090505b8451811015611953576000808683815181106118c757fe5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600085838151811061191757fe5b602002602001015181526020019081526020016000205482828151811061193a57fe5b60200260200101818152505080806001019150506118af565b508091505092915050565b611966611db6565b6119d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6119e18161323c565b50565b6119ec611db6565b611a5e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b611b2f611b2a613234565b612149565b611b84576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806144176030913960400191505060405180910390fd5b60008390506000611bb184600960008581526020019081526020016000205461329690919063ffffffff16565b9050600a600083815260200190815260200160002054811115611c3c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f4d617820737570706c792072656163686564000000000000000000000000000081525060200191505060405180910390fd5b611c488686868661331e565b611c6e84600960008881526020019081526020016000205461329690919063ffffffff16565b6009600087815260200190815260200160002081905550505050505050565b611c9d611c98613234565b612394565b611cf2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252604081526020018061450c6040913960400191505060405180910390fd5b611cfb8161346c565b50565b611d0e611d09613234565b612394565b611d63576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252604081526020018061450c6040913960400191505060405180910390fd5b611d6c816134c6565b50565b6000600a6000838152602001908152602001600020549050919050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611df9613234565b73ffffffffffffffffffffffffffffffffffffffff1614905090565b611e25611e20613234565b612394565b611e7a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252604081526020018061450c6040913960400191505060405180910390fd5b80600d9080519060200190611e909291906142c1565b5050565b611ea4611e9f613234565b612394565b611ef9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252604081526020018061450c6040913960400191505060405180910390fd5b6009600082815260200190815260200160002054600a60008381526020019081526020016000208190555050565b600c8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611fbd5780601f10611f9257610100808354040283529160200191611fbd565b820191906000526020600020905b815481529060010190602001808311611fa057829003601f168201915b505050505081565b611fd5611fd0613234565b612149565b61202a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806144176030913960400191505060405180910390fd5b612033816134e0565b50565b612046612041613234565b6131da565b565b80600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051808215151515815260200191505060405180910390a35050565b600061215f82600461353a90919063ffffffff16565b9050919050565b6000612178612173613234565b612394565b6121cd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252604081526020018061450c6040913960400191505060405180910390fd5b86861115612226576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d8152602001806144bd602d913960400191505060405180910390fd5b6000612230613618565b905061223a613635565b336008600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008686905011156122fd57807f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b878760405180806020018281038252848482818152602001925080828437600081840152601f19601f820116905080830192505050935050505060405180910390a25b600087146123565761235533828987878080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505061331e565b5b86600960008381526020019081526020016000208190555087600a600083815260200190815260200160002081905550809150509695505050505050565b60006123aa82600561353a90919063ffffffff16565b9050919050565b600060096000838152602001908152602001600020549050919050565b6123de6123d9613234565b612149565b612433576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806144176030913960400191505060405180910390fd5b80516009600084815260200190815260200160002054600a6000858152602001908152602001600020540310156124d2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f43616e74206d696e742061626f7665206d617820737570706c7900000000000081525060200191505060405180910390fd5b60008090505b815181101561251d576125108282815181106124f057fe5b602002602001015184600160405180602001604052806000815250611b1f565b80806001019150506124d8565b505050565b60086020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600d8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156125ed5780601f106125c2576101008083540402835291602001916125ed565b820191906000526020600020905b8154815290600101906020018083116125d057829003601f168201915b5050505050905090565b600080600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156126b357600080fd5b505afa1580156126c7573d6000803e3d6000fd5b505050506040513d60208110156126dd57600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff161415612714576001915050612722565b61271e8484613649565b9150505b92915050565b8473ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480612768575061276785336125f7565b5b6127bd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806143b8602a913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612843576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b815260200180614367602b913960400191505060405180910390fd5b61284f858585856136dd565b61285c85858585856138d1565b5050505050565b61286b611db6565b6128dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6128e681613b0a565b50565b6128f96128f4613234565b612149565b61294e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806144176030913960400191505060405180910390fd5b806129598484611371565b10156129cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f43616e6e6f74206275726e206d6f7265207468616e206164647265732068617381525060200191505060405180910390fd5b6129d8838383613c50565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff166008600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60606000821415612a91576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b71565b600082905060005b60008214612abb578080600101915050600a8281612ab357fe5b049150612a99565b6060816040519080825280601f01601f191660200182016040528015612af05781602001600182028038833980820191505090505b50905060006001830390505b60008614612b6957600a8681612b0e57fe5b0660300160f81b82828060019003935081518110612b2857fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8681612b6157fe5b049550612afc565b819450505050505b919050565b6060612bb28383604051806020016040528060008152506040518060200160405280600081525060405180602001604052806000815250613d8f565b905092915050565b8051825114612c14576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260358152602001806143e26035913960400191505060405180910390fd5b60008251905060008090505b81811015612e1157612cb0838281518110612c3757fe5b60200260200101516000808973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000878581518110612c8b57fe5b602002602001015181526020019081526020016000205461405590919063ffffffff16565b6000808873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000868481518110612cfc57fe5b6020026020010151815260200190815260200160002081905550612d9e838281518110612d2557fe5b60200260200101516000808873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000878581518110612d7957fe5b602002602001015181526020019081526020016000205461329690919063ffffffff16565b6000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000868481518110612dea57fe5b60200260200101518152602001908152602001600020819055508080600101915050612c20565b508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b83811015612ec1578082015181840152602081019050612ea6565b50505050905001838103825284818151815260200191508051906020019060200280838360005b83811015612f03578082015181840152602081019050612ee8565b5050505090500194505050505060405180910390a45050505050565b612f3e8473ffffffffffffffffffffffffffffffffffffffff166140de565b156131d35760008473ffffffffffffffffffffffffffffffffffffffff1663bc197c8133888787876040518663ffffffff1660e01b8152600401808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001806020018060200180602001848103845287818151815260200191508051906020019060200280838360005b83811015613024578082015181840152602081019050613009565b50505050905001848103835286818151815260200191508051906020019060200280838360005b8381101561306657808201518184015260208101905061304b565b50505050905001848103825285818151815260200191508051906020019080838360005b838110156130a557808201518184015260208101905061308a565b50505050905090810190601f1680156130d25780820380516001836020036101000a031916815260200191505b5098505050505050505050602060405180830381600087803b1580156130f757600080fd5b505af115801561310b573d6000803e3d6000fd5b505050506040513d602081101561312157600080fd5b8101908080519060200190929190505050905063bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146131d1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603f8152602001806145a7603f913960400191505060405180910390fd5b505b5050505050565b6131ee81600461412990919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669260405160405180910390a250565b600033905090565b61325081600561412990919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f0a8eb35e5ca14b3d6f28e4abf2f128dbab231a58b56e89beb5d636115001e16560405160405180910390a250565b600080828401905083811015613314576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f536166654d617468236164643a204f564552464c4f570000000000000000000081525060200191505060405180910390fd5b8091505092915050565b613380826000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008681526020019081526020016000205461329690919063ffffffff16565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000858152602001908152602001600020819055508373ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628686604051808381526020018281526020019250505060405180910390a46134666000858585856138d1565b50505050565b6134808160056141e690919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f22380c05984257a1cb900161c713dd71d39e74820f1aea43bd3f1bdd2096129960405160405180910390a250565b80600290805190602001906134dc9291906142c1565b5050565b6134f48160046141e690919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f660405160405180910390a250565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156135c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806144ea6022913960400191505060405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000613630600160075461329690919063ffffffff16565b905090565b600760008154809291906001019190505550565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61373f816000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008581526020019081526020016000205461405590919063ffffffff16565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000848152602001908152602001600020819055506137f4816000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008581526020019081526020016000205461329690919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000848152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628585604051808381526020018281526020019250505060405180910390a450505050565b6138f08473ffffffffffffffffffffffffffffffffffffffff166140de565b15613b035760008473ffffffffffffffffffffffffffffffffffffffff1663f23a6e6133888787876040518663ffffffff1660e01b8152600401808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200184815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b838110156139d75780820151818401526020810190506139bc565b50505050905090810190601f168015613a045780820380516001836020036101000a031916815260200191505b509650505050505050602060405180830381600087803b158015613a2757600080fd5b505af1158015613a3b573d6000803e3d6000fd5b505050506040513d6020811015613a5157600080fd5b8101908080519060200190929190505050905063f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614613b01576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603a8152602001806145e6603a913960400191505060405180910390fd5b505b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613b90576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806143926026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b613cb2816000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008581526020019081526020016000205461405590919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628585604051808381526020018281526020019250505060405180910390a4505050565b6060808690506060869050606086905060608690506060869050606081518351855187518951010101016040519080825280601f01601f191660200182016040528015613deb5781602001600182028038833980820191505090505b5090506060819050600080905060008090505b8851811015613e6c57888181518110613e1357fe5b602001015160f81c60f81b838380600101945081518110613e3057fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053508080600101915050613dfe565b5060008090505b8751811015613ee157878181518110613e8857fe5b602001015160f81c60f81b838380600101945081518110613ea557fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053508080600101915050613e73565b5060008090505b8651811015613f5657868181518110613efd57fe5b602001015160f81c60f81b838380600101945081518110613f1a57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053508080600101915050613ee8565b5060008090505b8551811015613fcb57858181518110613f7257fe5b602001015160f81c60f81b838380600101945081518110613f8f57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053508080600101915050613f5d565b5060008090505b845181101561404057848181518110613fe757fe5b602001015160f81c60f81b83838060010194508151811061400457fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053508080600101915050613fd2565b50819850505050505050505095945050505050565b6000828211156140cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f536166654d617468237375623a20554e444552464c4f5700000000000000000081525060200191505060405180910390fd5b600082840390508091505092915050565b60008060007fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47060001b9050833f91506000801b82141580156141205750808214155b92505050919050565b614133828261353a565b614188576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806144476021913960400191505060405180910390fd5b60008260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6141f0828261353a565b15614263576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f526f6c65733a206163636f756e7420616c72656164792068617320726f6c650081525060200191505060405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061430257805160ff1916838001178555614330565b82800160010185558215614330579182015b8281111561432f578251825591602001919060010190614314565b5b50905061433d9190614341565b5090565b61436391905b8082111561435f576000816000905550600101614347565b5090565b9056fe4552433131353523736166655472616e7366657246726f6d3a20494e56414c49445f524543495049454e544f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433131353523736166655472616e7366657246726f6d3a20494e56414c49445f4f50455241544f5245524331313535235f7361666542617463685472616e7366657246726f6d3a20494e56414c49445f4152524159535f4c454e4754484d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c6545524331313535237361666542617463685472616e7366657246726f6d3a20494e56414c49445f524543495049454e544552433732315472616461626c65237572693a204e4f4e4558495354454e545f544f4b454e496e697469616c20737570706c792063616e6e6f74206265206d6f7265207468616e206d617820737570706c79526f6c65733a206163636f756e7420697320746865207a65726f206164647265737357686974656c69737441646d696e526f6c653a2063616c6c657220646f6573206e6f742068617665207468652057686974656c69737441646d696e20726f6c65455243313135352362616c616e63654f6642617463683a20494e56414c49445f41525241595f4c454e47544845524331313535237361666542617463685472616e7366657246726f6d3a20494e56414c49445f4f50455241544f5245524331313535235f63616c6c6f6e45524331313535426174636852656365697665643a20494e56414c49445f4f4e5f524543454956455f4d45535341474545524331313535235f63616c6c6f6e4552433131353552656365697665643a20494e56414c49445f4f4e5f524543454956455f4d455353414745a265627a7a72315820546c76577a914ad4a9bd2f0f08c879ee35a6f1845c6be26ac6c5049fb041d7b264736f6c63430005110032

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

000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1

-----Decoded View---------------
Arg [0] : _proxyRegistryAddress (address): 0xa5409ec958C83C3f309868babACA7c86DCB077c1

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1


Deployed Bytecode Sourcemap

47112:1538:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;47112:1538:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42149:49;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;42149:49:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29797:135;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;29797:135:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31878:264;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;31878:264:0;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;42227:18;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;42227:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42780:218;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;42780:218:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;42780:218:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42096:46;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;42096:46:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;24686:535;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;24686:535:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;24686:535:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;24686:535:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;24686:535:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;24686:535:0;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;24686:535:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;24686:535:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;24686:535:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;24686:535:0;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;24686:535:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;24686:535:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;24686:535:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;24686:535:0;;;;;;;;;;;;;;;:::i;:::-;;42675:97;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;42675:97:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;8090:95;;;:::i;:::-;;30234:538;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;30234:538:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;30234:538:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;30234:538:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;30234:538:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;30234:538:0;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;30234:538:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;30234:538:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;30234:538:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;30234:538:0;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;30234:538:0;;;;;;;;;;;;;;;;;42554:113;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;42554:113:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;4461:140;;;:::i;:::-;;45249:429;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;45249:429:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;45249:429:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;45249:429:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;45249:429:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;45249:429:0;;;;;;;;;;;;;;;:::i;:::-;;7966:116;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;7966:116:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;47442:122;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;47442:122:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;47442:122:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;47442:122:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;47442:122:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;47442:122:0;;;;;;;;;;;;;;;:::i;:::-;;43458:107;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;43458:107:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;3650:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;4016:94;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;47572:112;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;47572:112:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;47572:112:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;47572:112:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;47572:112:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;47572:112:0;;;;;;;;;;;;;;;:::i;:::-;;47905:118;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;47905:118:0;;;;;;;;;;;;;;;;;:::i;:::-;;42276:20;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;42276:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6747:92;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;6747:92:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;6847:79;;;:::i;:::-;;28745:243;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;28745:243:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;6630:109;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;6630:109:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;44240:696;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;44240:696:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;44240:696:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;44240:696:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;44240:696:0;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;44240:696:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;44240:696:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;44240:696:0;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;7833:125;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;7833:125:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;43176:106;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;43176:106:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;48337:310;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;48337:310:0;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;48337:310:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;48337:310:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;48337:310:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;48337:310:0;;;;;;;;;;;;;;;:::i;:::-;;42046:43;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;42046:43:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;47692:97;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;47692:97:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45829:414;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;45829:414:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;23706:569;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;23706:569:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;23706:569:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;23706:569:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;23706:569:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;23706:569:0;;;;;;;;;;;;;;;:::i;:::-;;4756:109;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;4756:109:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;48031:219;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;48031:219:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;42149:49;;;;;;;;;;;;;;;;;:::o;29797:135::-;29871:7;29903:8;:16;29912:6;29903:16;;;;;;;;;;;;;;;:21;29920:3;29903:21;;;;;;;;;;;;29896:28;;29797:135;;;;:::o;31878:264::-;31949:4;31069:10;31986:26;;31970:42;;;:12;:42;;;;:102;;;;31633:10;32045:27;;32029:43;;;:12;:43;;;;31970:102;31966:146;;;32096:4;32089:11;;;;31966:146;32129:5;32122:12;;31878:264;;;;:::o;42227:18::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;42780:218::-;42827:13;42861:12;42869:3;42861:7;:12::i;:::-;42853:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42933:57;42951:15;42933:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42968:21;42985:3;42968:16;:21::i;:::-;42933:17;:57::i;:::-;42926:64;;42780:218;;;:::o;42096:46::-;;;;;;;;;;;;;;;;;:::o;24686:535::-;24891:5;24877:19;;:10;:19;;;24876:60;;;;24901:35;24918:5;24925:10;24901:16;:35::i;:::-;24876:60;24868:120;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25022:1;25007:17;;:3;:17;;;;24999:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25090:50;25113:5;25120:3;25125:4;25131:8;25090:22;:50::i;:::-;25151:62;25179:5;25186:3;25191:4;25197:8;25207:5;25151:27;:62::i;:::-;24686:535;;;;;:::o;42675:97::-;3862:9;:7;:9::i;:::-;3854:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42742:22;42756:7;42742:13;:22::i;:::-;42675:97;:::o;8090:95::-;8142:35;8164:12;:10;:12::i;:::-;8142:21;:35::i;:::-;8090:95::o;30234:538::-;30333:16;30393:4;:11;30375:7;:14;:29;30367:86;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30488:30;30535:7;:14;30521:29;;;;;;;;;;;;;;;;;;;;;;29:2:-1;21:6;17:15;117:4;105:10;97:6;88:34;148:4;140:6;136:17;126:27;;0:157;30521:29:0;;;;30488:62;;30617:9;30629:1;30617:13;;30612:120;30636:7;:14;30632:1;:18;30612:120;;;30691:8;:20;30700:7;30708:1;30700:10;;;;;;;;;;;;;;30691:20;;;;;;;;;;;;;;;:29;30712:4;30717:1;30712:7;;;;;;;;;;;;;;30691:29;;;;;;;;;;;;30672:13;30686:1;30672:16;;;;;;;;;;;;;:48;;;;;30652:3;;;;;;;30612:120;;;;30751:13;30744:20;;;30234:538;;;;:::o;42554:113::-;3862:9;:7;:9::i;:::-;3854:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42629:30;42651:7;42629:21;:30::i;:::-;42554:113;:::o;4461:140::-;3862:9;:7;:9::i;:::-;3854:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4560:1;4523:40;;4544:6;;;;;;;;;;;4523:40;;;;;;;;;;;;4591:1;4574:6;;:19;;;;;;;;;;;;;;;;;;4461:140::o;45249:429::-;6527:22;6536:12;:10;:12::i;:::-;6527:8;:22::i;:::-;6519:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45400:15;45418:3;45400:21;;45432:17;45452:35;45477:9;45452:11;:20;45464:7;45452:20;;;;;;;;;;;;:24;;:35;;;;:::i;:::-;45432:55;;45519:14;:23;45534:7;45519:23;;;;;;;;;;;;45506:9;:36;;45498:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45576:33;45582:3;45587;45592:9;45603:5;45576;:33::i;:::-;45639:31;45660:9;45639:11;:16;45651:3;45639:16;;;;;;;;;;;;:20;;:31;;;;:::i;:::-;45620:11;:16;45632:3;45620:16;;;;;;;;;;;:50;;;;6613:1;;45249:429;;;;:::o;7966:116::-;7706:30;7723:12;:10;:12::i;:::-;7706:16;:30::i;:::-;7698:107;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8047:27;8066:7;8047:18;:27::i;:::-;7966:116;:::o;47442:122::-;7706:30;7723:12;:10;:12::i;:::-;7706:16;:30::i;:::-;7698:107;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47529:27;47549:6;47529:19;:27::i;:::-;47442:122;:::o;43458:107::-;43511:7;43538:14;:19;43553:3;43538:19;;;;;;;;;;;;43531:26;;43458:107;;;:::o;3650:79::-;3688:7;3715:6;;;;;;;;;;;3708:13;;3650:79;:::o;4016:94::-;4056:4;4096:6;;;;;;;;;;;4080:22;;:12;:10;:12::i;:::-;:22;;;4073:29;;4016:94;:::o;47572:112::-;7706:30;7723:12;:10;:12::i;:::-;7706:16;:30::i;:::-;7698:107;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47670:6;47655:12;:21;;;;;;;;;;;;:::i;:::-;;47572:112;:::o;47905:118::-;7706:30;7723:12;:10;:12::i;:::-;7706:16;:30::i;:::-;7698:107;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47999:11;:16;48011:3;47999:16;;;;;;;;;;;;47977:14;:19;47992:3;47977:19;;;;;;;;;;;:38;;;;47905:118;:::o;42276:20::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;6747:92::-;6527:22;6536:12;:10;:12::i;:::-;6527:8;:22::i;:::-;6519:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6812:19;6823:7;6812:10;:19::i;:::-;6747:92;:::o;6847:79::-;6891:27;6905:12;:10;:12::i;:::-;6891:13;:27::i;:::-;6847:79::o;28745:243::-;28907:9;28872;:21;28882:10;28872:21;;;;;;;;;;;;;;;:32;28894:9;28872:32;;;;;;;;;;;;;;;;:44;;;;;;;;;;;;;;;;;;28959:9;28932:48;;28947:10;28932:48;;;28970:9;28932:48;;;;;;;;;;;;;;;;;;;;;;28745:243;;:::o;6630:109::-;6686:4;6710:21;6723:7;6710:8;:12;;:21;;;;:::i;:::-;6703:28;;6630:109;;;:::o;44240:696::-;44424:15;7706:30;7723:12;:10;:12::i;:::-;7706:16;:30::i;:::-;7698:107;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44478:10;44460:14;:28;;44452:86;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44549:11;44563:17;:15;:17::i;:::-;44549:31;;44591:23;:21;:23::i;:::-;44641:10;44625:8;:13;44634:3;44625:13;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;44689:1;44674:4;;44668:18;;:22;44664:74;;;44722:3;44712:14;44716:4;;44712:14;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;44712:14:0;;;;;;;;;;;;;;44664:74;44772:1;44754:14;:19;44750:70;;44775:45;44781:10;44793:3;44798:14;44814:5;;44775:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;44775:45:0;;;;;;:5;:45::i;:::-;44750:70;44850:14;44831:11;:16;44843:3;44831:16;;;;;;;;;;;:33;;;;44897:10;44875:14;:19;44890:3;44875:19;;;;;;;;;;;:32;;;;44925:3;44918:10;;;44240:696;;;;;;;;:::o;7833:125::-;7897:4;7921:29;7942:7;7921:16;:20;;:29;;;;:::i;:::-;7914:36;;7833:125;;;:::o;43176:106::-;43231:7;43258:11;:16;43270:3;43258:16;;;;;;;;;;;;43251:23;;43176:106;;;:::o;48337:310::-;6527:22;6536:12;:10;:12::i;:::-;6527:8;:22::i;:::-;6519:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48475:10;:17;48455:11;:16;48467:3;48455:16;;;;;;;;;;;;48433:14;:19;48448:3;48433:19;;;;;;;;;;;;:38;:59;;48425:98;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48539:9;48551:1;48539:13;;48534:106;48558:10;:17;48554:1;:21;48534:106;;;48597:31;48602:10;48613:1;48602:13;;;;;;;;;;;;;;48617:3;48622:1;48597:31;;;;;;;;;;;;:4;:31::i;:::-;48577:3;;;;;;;48534:106;;;;48337:310;;:::o;42046:43::-;;;;;;;;;;;;;;;;;;;;;;:::o;47692:97::-;47736:13;47769:12;47762:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47692:97;:::o;45829:414::-;45911:15;46002:27;46046:20;;;;;;;;;;;46002:65;;46124:9;46082:51;;46090:13;:21;;;46112:6;46090:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;46090:29:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;46090:29:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;46090:29:0;;;;;;;;;;;;;;;;46082:51;;;46078:95;;;46157:4;46150:11;;;;;46078:95;46192:43;46217:6;46225:9;46192:24;:43::i;:::-;46185:50;;;45829:414;;;;;:::o;23706:569::-;23861:5;23847:19;;:10;:19;;;23846:60;;;;23871:35;23888:5;23895:10;23871:16;:35::i;:::-;23846:60;23838:115;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23987:1;23972:17;;:3;:17;;;;23964:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24158:43;24176:5;24183:3;24188;24193:7;24158:17;:43::i;:::-;24212:55;24235:5;24242:3;24247;24252:7;24261:5;24212:22;:55::i;:::-;23706:569;;;;;:::o;4756:109::-;3862:9;:7;:9::i;:::-;3854:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4829:28;4848:8;4829:18;:28::i;:::-;4756:109;:::o;48031:219::-;6527:22;6536:12;:10;:12::i;:::-;6527:8;:22::i;:::-;6519:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48158:7;48130:24;48140:8;48150:3;48130:9;:24::i;:::-;:35;;48122:80;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48213:29;48219:8;48229:3;48234:7;48213:5;:29::i;:::-;48031:219;;;:::o;46479:112::-;46532:4;46581:1;46556:27;;:8;:13;46565:3;46556:13;;;;;;;;;;;;;;;;;;;;;:27;;;;46549:34;;46479:112;;;:::o;40928:498::-;40981:27;41031:1;41025:2;:7;41021:50;;;41049:10;;;;;;;;;;;;;;;;;;;;;41021:50;41081:9;41093:2;41081:14;;41106:11;41128:69;41140:1;41135;:6;41128:69;;41158:5;;;;;;;41183:2;41178:7;;;;;;;;;41128:69;;;41207:17;41237:3;41227:14;;;;;;;;;;;;;;;;;;;;;;;;;29:1:-1;21:6;17:14;116:4;104:10;96:6;87:34;147:4;139:6;135:17;125:27;;0:156;41227:14:0;;;;41207:34;;41252:9;41270:1;41264:3;:7;41252:19;;41282:107;41295:1;41289:2;:7;41282:107;;41349:2;41344;:7;;;;;;41338:2;:14;41325:29;;41313:4;41318:3;;;;;;;41313:9;;;;;;;;;;;:41;;;;;;;;;;;41375:2;41369:8;;;;;;;;;41282:107;;;41413:4;41399:19;;;;;;40928:498;;;;:::o;40772:148::-;40850:13;40883:29;40893:2;40897;40883:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:9;:29::i;:::-;40876:36;;40772:148;;;;:::o;26947:741::-;27110:8;:15;27095:4;:11;:30;27087:96;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27238:17;27258:4;:11;27238:31;;27323:9;27335:1;27323:13;;27318:269;27342:9;27338:1;:13;27318:269;;;27455:41;27484:8;27493:1;27484:11;;;;;;;;;;;;;;27455:8;:15;27464:5;27455:15;;;;;;;;;;;;;;;:24;27471:4;27476:1;27471:7;;;;;;;;;;;;;;27455:24;;;;;;;;;;;;:28;;:41;;;;:::i;:::-;27428:8;:15;27437:5;27428:15;;;;;;;;;;;;;;;:24;27444:4;27449:1;27444:7;;;;;;;;;;;;;;27428:24;;;;;;;;;;;:68;;;;27536:39;27563:8;27572:1;27563:11;;;;;;;;;;;;;;27536:8;:13;27545:3;27536:13;;;;;;;;;;;;;;;:22;27550:4;27555:1;27550:7;;;;;;;;;;;;;;27536:22;;;;;;;;;;;;:26;;:39;;;;:::i;:::-;27511:8;:13;27520:3;27511:13;;;;;;;;;;;;;;;:22;27525:4;27530:1;27525:7;;;;;;;;;;;;;;27511:22;;;;;;;;;;;:64;;;;27353:3;;;;;;;27318:269;;;;27660:3;27627:53;;27653:5;27627:53;;27641:10;27627:53;;;27665:4;27671:8;27627:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;27627:53:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;27627:53:0;;;;;;;;;;;;;;;;;;;26947:741;;;;;:::o;27814:504::-;28030:16;:3;:14;;;:16::i;:::-;28026:285;;;28063:13;28101:3;28079:49;;;28129:10;28141:5;28148:4;28154:8;28164:5;28079:91;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;28079:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;28079:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;28079:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28079:91:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;28079:91:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;28079:91:0;;;;;;;;;;;;;;;;28063:107;;22559:10;28203:28;;28193:38;;;:6;:38;;;;28185:114;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28026:285;;27814:504;;;;;:::o;7064:130::-;7124:24;7140:7;7124:8;:15;;:24;;;;:::i;:::-;7178:7;7164:22;;;;;;;;;;;;7064:130;:::o;2441:98::-;2486:15;2521:10;2514:17;;2441:98;:::o;8347:154::-;8415:32;8439:7;8415:16;:23;;:32;;;;:::i;:::-;8485:7;8463:30;;;;;;;;;;;;8347:154;:::o;10549:176::-;10607:7;10627:9;10643:1;10639;:5;10627:17;;10668:1;10663;:6;;10655:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10716:1;10709:8;;;10549:176;;;;:::o;36161:429::-;36314:31;36337:7;36314:8;:13;36323:3;36314:13;;;;;;;;;;;;;;;:18;36328:3;36314:18;;;;;;;;;;;;:22;;:31;;;;:::i;:::-;36293:8;:13;36302:3;36293:13;;;;;;;;;;;;;;;:18;36307:3;36293:18;;;;;;;;;;;:52;;;;36427:3;36386:59;;36421:3;36386:59;;36401:10;36386:59;;;36432:3;36437:7;36386:59;;;;;;;;;;;;;;;;;;;;;;;;36520:62;36551:3;36557;36562;36567:7;36576:5;36520:22;:62::i;:::-;36161:429;;;;:::o;8193:146::-;8258:29;8279:7;8258:16;:20;;:29;;;;:::i;:::-;8323:7;8303:28;;;;;;;;;;;;8193:146;:::o;34496:129::-;34598:19;34580:15;:37;;;;;;;;;;;;:::i;:::-;;34496:129;:::o;6934:122::-;6991:21;7004:7;6991:8;:12;;:21;;;;:::i;:::-;7040:7;7028:20;;;;;;;;;;;;6934:122;:::o;5990:203::-;6062:4;6106:1;6087:21;;:7;:21;;;;6079:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6165:4;:11;;:20;6177:7;6165:20;;;;;;;;;;;;;;;;;;;;;;;;;6158:27;;5990:203;;;;:::o;46739:106::-;46788:7;46815:22;46835:1;46815:15;;:19;;:22;;;;:::i;:::-;46808:29;;46739:106;:::o;46924:77::-;46976:15;;:17;;;;;;;;;;;;;46924:77::o;29261:163::-;29348:15;29388:9;:17;29398:6;29388:17;;;;;;;;;;;;;;;:28;29406:9;29388:28;;;;;;;;;;;;;;;;;;;;;;;;;29381:35;;29261:163;;;;:::o;25647:400::-;25813:33;25838:7;25813:8;:15;25822:5;25813:15;;;;;;;;;;;;;;;:20;25829:3;25813:20;;;;;;;;;;;;:24;;:33;;;;:::i;:::-;25790:8;:15;25799:5;25790:15;;;;;;;;;;;;;;;:20;25806:3;25790:20;;;;;;;;;;;:56;;;;25897:31;25920:7;25897:8;:13;25906:3;25897:13;;;;;;;;;;;;;;;:18;25911:3;25897:18;;;;;;;;;;;;:22;;:31;;;;:::i;:::-;25876:8;:13;25885:3;25876:13;;;;;;;;;;;;;;;:18;25890:3;25876:18;;;;;;;;;;;:52;;;;26021:3;25987:52;;26014:5;25987:52;;26002:10;25987:52;;;26026:3;26031:7;25987:52;;;;;;;;;;;;;;;;;;;;;;;;25647:400;;;;:::o;26168:457::-;26355:16;:3;:14;;;:16::i;:::-;26351:267;;;26388:13;26426:3;26404:44;;;26449:10;26461:5;26468:3;26473:7;26482:5;26404:84;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;26404:84:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26404:84:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;26404:84:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;26404:84:0;;;;;;;;;;;;;;;;26388:100;;22486:10;26521:22;;26511:32;;;:6;:32;;;;26503:103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26351:267;;26168:457;;;;;:::o;4971:229::-;5065:1;5045:22;;:8;:22;;;;5037:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5155:8;5126:38;;5147:6;;;;;;;;;;;5126:38;;;;;;;;;;;;5184:8;5175:6;;:17;;;;;;;;;;;;;;;;;;4971:229;:::o;38050:285::-;38192:33;38217:7;38192:8;:15;38201:5;38192:15;;;;;;;;;;;;;;;:20;38208:3;38192:20;;;;;;;;;;;;:24;;:33;;;;:::i;:::-;38169:8;:15;38178:5;38169:15;;;;;;;;;;;;;;;:20;38185:3;38169:20;;;;;;;;;;;:56;;;;38308:3;38266:61;;38293:5;38266:61;;38281:10;38266:61;;;38314:3;38319:7;38266:61;;;;;;;;;;;;;;;;;;;;;;;;38050:285;;;:::o;39351:970::-;39535:13;39561:16;39586:2;39561:28;;39600:16;39625:2;39600:28;;39639:16;39664:2;39639:28;;39678:16;39703:2;39678:28;;39717:16;39742:2;39717:28;;39756:19;39841:3;:10;39828:3;:10;39815:3;:10;39802:3;:10;39789:3;:10;:23;:36;:49;:62;39778:74;;;;;;;;;;;;;;;;;;;;;;;;;29:1:-1;21:6;17:14;116:4;104:10;96:6;87:34;147:4;139:6;135:17;125:27;;0:156;39778:74:0;;;;39756:96;;39863:19;39891:5;39863:34;;39908:9;39920:1;39908:13;;39937:9;39949:1;39937:13;;39932:61;39956:3;:10;39952:1;:14;39932:61;;;39987:3;39991:1;39987:6;;;;;;;;;;;;;;;;39973;39980:3;;;;;;39973:11;;;;;;;;;;;:20;;;;;;;;;;;39968:3;;;;;;;39932:61;;;;40009:9;40021:1;40009:13;;40004:61;40028:3;:10;40024:1;:14;40004:61;;;40059:3;40063:1;40059:6;;;;;;;;;;;;;;;;40045;40052:3;;;;;;40045:11;;;;;;;;;;;:20;;;;;;;;;;;40040:3;;;;;;;40004:61;;;;40081:9;40093:1;40081:13;;40076:61;40100:3;:10;40096:1;:14;40076:61;;;40131:3;40135:1;40131:6;;;;;;;;;;;;;;;;40117;40124:3;;;;;;40117:11;;;;;;;;;;;:20;;;;;;;;;;;40112:3;;;;;;;40076:61;;;;40153:9;40165:1;40153:13;;40148:61;40172:3;:10;40168:1;:14;40148:61;;;40203:3;40207:1;40203:6;;;;;;;;;;;;;;;;40189;40196:3;;;;;;40189:11;;;;;;;;;;;:20;;;;;;;;;;;40184:3;;;;;;;40148:61;;;;40225:9;40237:1;40225:13;;40220:61;40244:3;:10;40240:1;:14;40220:61;;;40275:3;40279:1;40275:6;;;;;;;;;;;;;;;;40261;40268:3;;;;;;40261:11;;;;;;;;;;;:20;;;;;;;;;;;40256:3;;;;;;;40220:61;;;;40306:6;40292:21;;;;;;;;;;39351:970;;;;;;;:::o;10284:177::-;10342:7;10375:1;10370;:6;;10362:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10415:9;10431:1;10427;:5;10415:17;;10452:1;10445:8;;;10284:177;;;;:::o;21372:715::-;21432:4;21449:16;21476:19;21498:66;21476:88;;;;22008:7;21996:20;21984:32;;22048:3;22036:15;;:8;:15;;:42;;;;;22067:11;22055:8;:23;;22036:42;22028:51;;;;21372:715;;;:::o;5712:183::-;5792:18;5796:4;5802:7;5792:3;:18::i;:::-;5784:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5882:5;5859:4;:11;;:20;5871:7;5859:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;5712:183;;:::o;5454:178::-;5532:18;5536:4;5542:7;5532:3;:18::i;:::-;5531:19;5523:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5620:4;5597;:11;;:20;5609:7;5597:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;5454:178;;:::o;47112:1538::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o

Swarm Source

bzzr://546c76577a914ad4a9bd2f0f08c879ee35a6f1845c6be26ac6c5049fb041d7b2
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.