Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
Freedom_Reserve
Compiler Version
v0.4.26+commit.4563c3fc
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-10-27 */ pragma solidity ^0.4.18; /** * @title SafeMath * @dev Math operations with safety checks that throw on error */ library SafeMath { /** * @dev Multiplies two numbers, throws on overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) { return 0; } uint256 c = a * b; assert(c / a == b); return c; } /** * @dev Integer division of two numbers, truncating the quotient. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { // assert(b > 0); // Solidity automatically throws when dividing by 0 // uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return a / b; } /** * @dev Subtracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend). */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { assert(b <= a); return a - b; } /** * @dev Adds two numbers, throws on overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; assert(c >= a); return c; } } contract Ownable { address public owner; /** * @dev The Ownable constructor sets the original `owner` of the contract to the sender * account. */ function Ownable() public { owner = msg.sender; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(msg.sender == owner); _; } /** * @dev Allows the current owner to transfer control of the contract to a newOwner. * @param newOwner The address to transfer ownership to. */ function transferOwnership(address newOwner) public onlyOwner { if (newOwner != address(0)) { owner = newOwner; } } } /** * @title Pausable * @dev Base contract which allows children to implement an emergency stop mechanism. */ contract Pausable is Ownable { event Pause(); event Unpause(); bool public paused = false; /** * @dev Modifier to make a function callable only when the contract is not paused. */ modifier whenNotPaused() { require(!paused); _; } /** * @dev Modifier to make a function callable only when the contract is paused. */ modifier whenPaused() { require(paused); _; } /** * @dev called by the owner to pause, triggers stopped state */ function pause() onlyOwner whenNotPaused public { paused = true; emit Pause(); } /** * @dev called by the owner to unpause, returns to normal state */ function unpause() onlyOwner whenPaused public { paused = false; emit Unpause(); } } /** * @title ERC20Basic * @dev Simpler version of ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/179 */ contract ERC20Basic { function totalSupply() public view returns (uint256); function balanceOf(address who) public view returns (uint256); function transfer(address to, uint256 value) public returns (bool); event Transfer(address indexed from, address indexed to, uint256 value); } /** * @title ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/20 */ contract ERC20 is ERC20Basic { function allowance(address owner, address spender) public view returns (uint256); function transferFrom(address from, address to, uint256 value) public returns (bool); function approve(address spender, uint256 value) public returns (bool); event Approval(address indexed owner, address indexed spender, uint256 value); } /** * @title Basic token * @dev Basic version of StandardToken, with no allowances. */ contract BasicToken is ERC20Basic { using SafeMath for uint256; mapping(address => uint256) balances; uint256 totalSupply_; /** * @dev total number of tokens in existence */ function totalSupply() public view returns (uint256) { return totalSupply_; } /** * @dev transfer token for a specified address * @param _to The address to transfer to. * @param _value The amount to be transferred. */ function transfer(address _to, uint256 _value) public returns (bool) { require(_to != address(0)); require(_value <= balances[msg.sender]); balances[msg.sender] = balances[msg.sender].sub(_value); balances[_to] = balances[_to].add(_value); emit Transfer(msg.sender, _to, _value); return true; } /** * @dev Gets the balance of the specified address. * @param _owner The address to query the the balance of. * @return An uint256 representing the amount owned by the passed address. */ function balanceOf(address _owner) public view returns (uint256 balance) { return balances[_owner]; } } /** * @title Standard ERC20 token * * @dev Implementation of the basic standard token. * @dev https://github.com/ethereum/EIPs/issues/20 */ contract StandardToken is ERC20, BasicToken { mapping (address => mapping (address => uint256)) internal allowed; /** * @dev Transfer tokens from one address to another * @param _from address The address which you want to send tokens from * @param _to address The address which you want to transfer to * @param _value uint256 the amount of tokens to be transferred */ function transferFrom(address _from, address _to, uint256 _value) public returns (bool) { require(_to != address(0)); require(_value <= balances[_from]); require(_value <= allowed[_from][msg.sender]); balances[_from] = balances[_from].sub(_value); balances[_to] = balances[_to].add(_value); allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value); emit Transfer(_from, _to, _value); return true; } /** * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender. * * Beware that changing an allowance with this method brings the risk that someone may use both the old * and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this * race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * @param _spender The address which will spend the funds. * @param _value The amount of tokens to be spent. */ function approve(address _spender, uint256 _value) public returns (bool) { allowed[msg.sender][_spender] = _value; emit Approval(msg.sender, _spender, _value); return true; } /** * @dev Function to check the amount of tokens that an owner allowed to a spender. * @param _owner address The address which owns the funds. * @param _spender address The address which will spend the funds. * @return A uint256 specifying the amount of tokens still available for the spender. */ function allowance(address _owner, address _spender) public view returns (uint256) { return allowed[_owner][_spender]; } /** * @dev Increase the amount of tokens that an owner allowed to a spender. * * approve should be called when allowed[_spender] == 0. To increment * allowed value is better to use this function to avoid 2 calls (and wait until * the first transaction is mined) * From MonolithDAO Token.sol * @param _spender The address which will spend the funds. * @param _addedValue The amount of tokens to increase the allowance by. */ function increaseApproval(address _spender, uint _addedValue) public returns (bool) { allowed[msg.sender][_spender] = allowed[msg.sender][_spender].add(_addedValue); emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]); return true; } /** * @dev Decrease the amount of tokens that an owner allowed to a spender. * * approve should be called when allowed[_spender] == 0. To decrement * allowed value is better to use this function to avoid 2 calls (and wait until * the first transaction is mined) * From MonolithDAO Token.sol * @param _spender The address which will spend the funds. * @param _subtractedValue The amount of tokens to decrease the allowance by. */ function decreaseApproval(address _spender, uint _subtractedValue) public returns (bool) { uint oldValue = allowed[msg.sender][_spender]; if (_subtractedValue > oldValue) { allowed[msg.sender][_spender] = 0; } else { allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue); } emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]); return true; } } /** * @title Mintable token * @dev Simple ERC20 Token example, with mintable token creation * @dev Issue: * https://github.com/OpenZeppelin/zeppelin-solidity/issues/120 */ contract MintableToken is StandardToken, Ownable { event Mint(address indexed to, uint256 amount); event MintFinished(); bool public mintingFinished = false; modifier canMint() { require(!mintingFinished); _; } /** * @dev Function to mint tokens * @param _to The address that will receive the minted tokens. * @param _amount The amount of tokens to mint. * @return A boolean that indicates if the operation was successful. */ function mint(address _to, uint256 _amount) onlyOwner canMint public returns (bool) { totalSupply_ = totalSupply_.add(_amount); balances[_to] = balances[_to].add(_amount); emit Mint(_to, _amount); emit Transfer(address(0), _to, _amount); return true; } /** * @dev Function to stop minting new tokens. * @return True if the operation was successful. */ function finishMinting() onlyOwner canMint public returns (bool) { mintingFinished = true; emit MintFinished(); return true; } } /** * @title Capped token * @dev Mintable token with a token cap. */ contract CappedToken is MintableToken { uint256 public cap; function CappedToken(uint256 _cap) public { require(_cap > 0); cap = _cap; } /** * @dev Function to mint tokens * @param _to The address that will receive the minted tokens. * @param _amount The amount of tokens to mint. * @return A boolean that indicates if the operation was successful. */ function mint(address _to, uint256 _amount) onlyOwner canMint public returns (bool) { require(totalSupply_.add(_amount) <= cap); return super.mint(_to, _amount); } } contract PausableToken is StandardToken, Pausable { function transfer(address _to, uint256 _value) public whenNotPaused returns (bool) { return super.transfer(_to, _value); } function transferFrom(address _from, address _to, uint256 _value) public whenNotPaused returns (bool) { return super.transferFrom(_from, _to, _value); } function approve(address _spender, uint256 _value) public whenNotPaused returns (bool) { return super.approve(_spender, _value); } function increaseApproval(address _spender, uint _addedValue) public whenNotPaused returns (bool success) { return super.increaseApproval(_spender, _addedValue); } function decreaseApproval(address _spender, uint _subtractedValue) public whenNotPaused returns (bool success) { return super.decreaseApproval(_spender, _subtractedValue); } function batchTransfer(address[] _receivers, uint256 _value) public whenNotPaused returns (bool) { uint receiverCount = _receivers.length; uint256 amount = _value.mul(uint256(receiverCount)); /* require(receiverCount > 0 && receiverCount <= 20); */ require(receiverCount > 0); require(_value > 0 && balances[msg.sender] >= amount); balances[msg.sender] = balances[msg.sender].sub(amount); for (uint i = 0; i < receiverCount; i++) { balances[_receivers[i]] = balances[_receivers[i]].add(_value); Transfer(msg.sender, _receivers[i], _value); } return true; } } /** * @title Burnable Token * @dev Token that can be irreversibly burned (destroyed). */ contract BurnableToken is BasicToken { event Burn(address indexed burner, uint256 value); /** * @dev Burns a specific amount of tokens. * @param _value The amount of token to be burned. */ function burn(uint256 _value) public { require(_value <= balances[msg.sender]); // no need to require value <= totalSupply, since that would imply the // sender's balance is greater than the totalSupply, which *should* be an assertion failure address burner = msg.sender; balances[burner] = balances[burner].sub(_value); totalSupply_ = totalSupply_.sub(_value); emit Burn(burner, _value); emit Transfer(burner, address(0), _value); } } contract Freedom_Reserve is CappedToken, PausableToken, BurnableToken { string public constant name = "Freedom Reserve"; string public constant symbol = "FRC"; uint8 public constant decimals = 18; uint256 private constant TOKEN_CAP = 80000000* (10 ** uint256(decimals)); uint256 private constant TOKEN_INITIAL = 80000000 * (10 ** uint256(decimals)); function Freedom_Reserve() public CappedToken(TOKEN_CAP) { totalSupply_ = TOKEN_INITIAL; balances[msg.sender] = TOKEN_INITIAL; emit Transfer(address(0), msg.sender, TOKEN_INITIAL); paused = false; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"constant":true,"inputs":[],"name":"mintingFinished","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"cap","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"finishMinting","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_receivers","type":"address[]"},{"name":"_value","type":"uint256"}],"name":"batchTransfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"burner","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[],"name":"MintFinished","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]
Contract Creation Code
60806040526003805460a060020a60ff02191690556005805460ff1916905534801561002a57600080fd5b5060038054600160a060020a031916331790556a422ca8b0a00a42500000006004556a422ca8b0a00a4250000000600181905533600081815260208181526040808320859055805194855251929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a36005805460ff19169055611030806100bd6000396000f3006080604052600436106101275763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166305d2035b811461012c57806306fdde0314610155578063095ea7b3146101df57806318160ddd1461020357806323b872dd1461022a578063313ce56714610254578063355274ea1461027f5780633f4ba83a1461029457806340c10f19146102ab57806342966c68146102cf5780635c975abb146102e757806366188463146102fc57806370a08231146103205780637d64bcb41461034157806383f12fec146103565780638456cb59146103ad5780638da5cb5b146103c257806395d89b41146103f3578063a9059cbb14610408578063d73dd6231461042c578063dd62ed3e14610450578063f2fde38b14610477575b600080fd5b34801561013857600080fd5b50610141610498565b604080519115158252519081900360200190f35b34801561016157600080fd5b5061016a6104a8565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101a457818101518382015260200161018c565b50505050905090810190601f1680156101d15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101eb57600080fd5b50610141600160a060020a03600435166024356104df565b34801561020f57600080fd5b50610218610503565b60408051918252519081900360200190f35b34801561023657600080fd5b50610141600160a060020a0360043581169060243516604435610509565b34801561026057600080fd5b5061026961052f565b6040805160ff9092168252519081900360200190f35b34801561028b57600080fd5b50610218610534565b3480156102a057600080fd5b506102a961053a565b005b3480156102b757600080fd5b50610141600160a060020a0360043516602435610597565b3480156102db57600080fd5b506102a96004356105f3565b3480156102f357600080fd5b506101416106d1565b34801561030857600080fd5b50610141600160a060020a03600435166024356106da565b34801561032c57600080fd5b50610218600160a060020a03600435166106f7565b34801561034d57600080fd5b50610141610712565b34801561036257600080fd5b50604080516020600480358082013583810280860185019096528085526101419536959394602494938501929182918501908490808284375094975050933594506107969350505050565b3480156103b957600080fd5b506102a9610916565b3480156103ce57600080fd5b506103d7610975565b60408051600160a060020a039092168252519081900360200190f35b3480156103ff57600080fd5b5061016a610984565b34801561041457600080fd5b50610141600160a060020a03600435166024356109bb565b34801561043857600080fd5b50610141600160a060020a03600435166024356109d8565b34801561045c57600080fd5b50610218600160a060020a03600435811690602435166109f5565b34801561048357600080fd5b506102a9600160a060020a0360043516610a20565b60035460a060020a900460ff1681565b60408051808201909152600f81527f46726565646f6d20526573657276650000000000000000000000000000000000602082015281565b60055460009060ff16156104f257600080fd5b6104fc8383610a72565b9392505050565b60015490565b60055460009060ff161561051c57600080fd5b610527848484610ad8565b949350505050565b601281565b60045481565b600354600160a060020a0316331461055157600080fd5b60055460ff16151561056257600080fd5b6005805460ff191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b600354600090600160a060020a031633146105b157600080fd5b60035460a060020a900460ff16156105c857600080fd5b6004546001546105de908463ffffffff610c3d16565b11156105e957600080fd5b6104fc8383610c57565b3360009081526020819052604081205482111561060f57600080fd5b5033600081815260208190526040902054610630908363ffffffff610d4f16565b600160a060020a03821660009081526020819052604090205560015461065c908363ffffffff610d4f16565b600155604080518381529051600160a060020a038316917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518381529051600091600160a060020a03841691600080516020610fe58339815191529181900360200190a35050565b60055460ff1681565b60055460009060ff16156106ed57600080fd5b6104fc8383610d61565b600160a060020a031660009081526020819052604090205490565b600354600090600160a060020a0316331461072c57600080fd5b60035460a060020a900460ff161561074357600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a150600190565b60055460009081908190819060ff16156107af57600080fd5b855192506107c3858463ffffffff610e5116565b9150600083116107d257600080fd5b6000851180156107f15750336000908152602081905260409020548211155b15156107fc57600080fd5b3360009081526020819052604090205461081c908363ffffffff610d4f16565b3360009081526020819052604081209190915590505b8281101561090a5761087e85600080898581518110151561084f57fe5b6020908102909101810151600160a060020a03168252810191909152604001600020549063ffffffff610c3d16565b600080888481518110151561088f57fe5b6020908102909101810151600160a060020a031682528101919091526040016000205585518690829081106108c057fe5b90602001906020020151600160a060020a031633600160a060020a0316600080516020610fe5833981519152876040518082815260200191505060405180910390a3600101610832565b50600195945050505050565b600354600160a060020a0316331461092d57600080fd5b60055460ff161561093d57600080fd5b6005805460ff191660011790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b600354600160a060020a031681565b60408051808201909152600381527f4652430000000000000000000000000000000000000000000000000000000000602082015281565b60055460009060ff16156109ce57600080fd5b6104fc8383610e7c565b60055460009060ff16156109eb57600080fd5b6104fc8383610f4b565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600354600160a060020a03163314610a3757600080fd5b600160a060020a03811615610a6f576003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b50565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b6000600160a060020a0383161515610aef57600080fd5b600160a060020a038416600090815260208190526040902054821115610b1457600080fd5b600160a060020a0384166000908152600260209081526040808320338452909152902054821115610b4457600080fd5b600160a060020a038416600090815260208190526040902054610b6d908363ffffffff610d4f16565b600160a060020a038086166000908152602081905260408082209390935590851681522054610ba2908363ffffffff610c3d16565b600160a060020a03808516600090815260208181526040808320949094559187168152600282528281203382529091522054610be4908363ffffffff610d4f16565b600160a060020a0380861660008181526002602090815260408083203384528252918290209490945580518681529051928716939192600080516020610fe5833981519152929181900390910190a35060019392505050565b600082820183811015610c4c57fe5b8091505b5092915050565b600354600090600160a060020a03163314610c7157600080fd5b60035460a060020a900460ff1615610c8857600080fd5b600154610c9b908363ffffffff610c3d16565b600155600160a060020a038316600090815260208190526040902054610cc7908363ffffffff610c3d16565b600160a060020a03841660008181526020818152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a03851691600091600080516020610fe58339815191529181900360200190a350600192915050565b600082821115610d5b57fe5b50900390565b336000908152600260209081526040808320600160a060020a038616845290915281205480831115610db657336000908152600260209081526040808320600160a060020a0388168452909152812055610deb565b610dc6818463ffffffff610d4f16565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600080831515610e645760009150610c50565b50828202828482811515610e7457fe5b0414610c4c57fe5b6000600160a060020a0383161515610e9357600080fd5b33600090815260208190526040902054821115610eaf57600080fd5b33600090815260208190526040902054610ecf908363ffffffff610d4f16565b3360009081526020819052604080822092909255600160a060020a03851681522054610f01908363ffffffff610c3d16565b600160a060020a03841660008181526020818152604091829020939093558051858152905191923392600080516020610fe58339815191529281900390910190a350600192915050565b336000908152600260209081526040808320600160a060020a0386168452909152812054610f7f908363ffffffff610c3d16565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a3506001929150505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a7230582015e89e8774bdb6bda330246069cde5aaa9e64530c9dd50a5e081c9939c8b26630029
Deployed Bytecode
0x6080604052600436106101275763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166305d2035b811461012c57806306fdde0314610155578063095ea7b3146101df57806318160ddd1461020357806323b872dd1461022a578063313ce56714610254578063355274ea1461027f5780633f4ba83a1461029457806340c10f19146102ab57806342966c68146102cf5780635c975abb146102e757806366188463146102fc57806370a08231146103205780637d64bcb41461034157806383f12fec146103565780638456cb59146103ad5780638da5cb5b146103c257806395d89b41146103f3578063a9059cbb14610408578063d73dd6231461042c578063dd62ed3e14610450578063f2fde38b14610477575b600080fd5b34801561013857600080fd5b50610141610498565b604080519115158252519081900360200190f35b34801561016157600080fd5b5061016a6104a8565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101a457818101518382015260200161018c565b50505050905090810190601f1680156101d15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101eb57600080fd5b50610141600160a060020a03600435166024356104df565b34801561020f57600080fd5b50610218610503565b60408051918252519081900360200190f35b34801561023657600080fd5b50610141600160a060020a0360043581169060243516604435610509565b34801561026057600080fd5b5061026961052f565b6040805160ff9092168252519081900360200190f35b34801561028b57600080fd5b50610218610534565b3480156102a057600080fd5b506102a961053a565b005b3480156102b757600080fd5b50610141600160a060020a0360043516602435610597565b3480156102db57600080fd5b506102a96004356105f3565b3480156102f357600080fd5b506101416106d1565b34801561030857600080fd5b50610141600160a060020a03600435166024356106da565b34801561032c57600080fd5b50610218600160a060020a03600435166106f7565b34801561034d57600080fd5b50610141610712565b34801561036257600080fd5b50604080516020600480358082013583810280860185019096528085526101419536959394602494938501929182918501908490808284375094975050933594506107969350505050565b3480156103b957600080fd5b506102a9610916565b3480156103ce57600080fd5b506103d7610975565b60408051600160a060020a039092168252519081900360200190f35b3480156103ff57600080fd5b5061016a610984565b34801561041457600080fd5b50610141600160a060020a03600435166024356109bb565b34801561043857600080fd5b50610141600160a060020a03600435166024356109d8565b34801561045c57600080fd5b50610218600160a060020a03600435811690602435166109f5565b34801561048357600080fd5b506102a9600160a060020a0360043516610a20565b60035460a060020a900460ff1681565b60408051808201909152600f81527f46726565646f6d20526573657276650000000000000000000000000000000000602082015281565b60055460009060ff16156104f257600080fd5b6104fc8383610a72565b9392505050565b60015490565b60055460009060ff161561051c57600080fd5b610527848484610ad8565b949350505050565b601281565b60045481565b600354600160a060020a0316331461055157600080fd5b60055460ff16151561056257600080fd5b6005805460ff191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b600354600090600160a060020a031633146105b157600080fd5b60035460a060020a900460ff16156105c857600080fd5b6004546001546105de908463ffffffff610c3d16565b11156105e957600080fd5b6104fc8383610c57565b3360009081526020819052604081205482111561060f57600080fd5b5033600081815260208190526040902054610630908363ffffffff610d4f16565b600160a060020a03821660009081526020819052604090205560015461065c908363ffffffff610d4f16565b600155604080518381529051600160a060020a038316917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518381529051600091600160a060020a03841691600080516020610fe58339815191529181900360200190a35050565b60055460ff1681565b60055460009060ff16156106ed57600080fd5b6104fc8383610d61565b600160a060020a031660009081526020819052604090205490565b600354600090600160a060020a0316331461072c57600080fd5b60035460a060020a900460ff161561074357600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a150600190565b60055460009081908190819060ff16156107af57600080fd5b855192506107c3858463ffffffff610e5116565b9150600083116107d257600080fd5b6000851180156107f15750336000908152602081905260409020548211155b15156107fc57600080fd5b3360009081526020819052604090205461081c908363ffffffff610d4f16565b3360009081526020819052604081209190915590505b8281101561090a5761087e85600080898581518110151561084f57fe5b6020908102909101810151600160a060020a03168252810191909152604001600020549063ffffffff610c3d16565b600080888481518110151561088f57fe5b6020908102909101810151600160a060020a031682528101919091526040016000205585518690829081106108c057fe5b90602001906020020151600160a060020a031633600160a060020a0316600080516020610fe5833981519152876040518082815260200191505060405180910390a3600101610832565b50600195945050505050565b600354600160a060020a0316331461092d57600080fd5b60055460ff161561093d57600080fd5b6005805460ff191660011790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b600354600160a060020a031681565b60408051808201909152600381527f4652430000000000000000000000000000000000000000000000000000000000602082015281565b60055460009060ff16156109ce57600080fd5b6104fc8383610e7c565b60055460009060ff16156109eb57600080fd5b6104fc8383610f4b565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600354600160a060020a03163314610a3757600080fd5b600160a060020a03811615610a6f576003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b50565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b6000600160a060020a0383161515610aef57600080fd5b600160a060020a038416600090815260208190526040902054821115610b1457600080fd5b600160a060020a0384166000908152600260209081526040808320338452909152902054821115610b4457600080fd5b600160a060020a038416600090815260208190526040902054610b6d908363ffffffff610d4f16565b600160a060020a038086166000908152602081905260408082209390935590851681522054610ba2908363ffffffff610c3d16565b600160a060020a03808516600090815260208181526040808320949094559187168152600282528281203382529091522054610be4908363ffffffff610d4f16565b600160a060020a0380861660008181526002602090815260408083203384528252918290209490945580518681529051928716939192600080516020610fe5833981519152929181900390910190a35060019392505050565b600082820183811015610c4c57fe5b8091505b5092915050565b600354600090600160a060020a03163314610c7157600080fd5b60035460a060020a900460ff1615610c8857600080fd5b600154610c9b908363ffffffff610c3d16565b600155600160a060020a038316600090815260208190526040902054610cc7908363ffffffff610c3d16565b600160a060020a03841660008181526020818152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a03851691600091600080516020610fe58339815191529181900360200190a350600192915050565b600082821115610d5b57fe5b50900390565b336000908152600260209081526040808320600160a060020a038616845290915281205480831115610db657336000908152600260209081526040808320600160a060020a0388168452909152812055610deb565b610dc6818463ffffffff610d4f16565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600080831515610e645760009150610c50565b50828202828482811515610e7457fe5b0414610c4c57fe5b6000600160a060020a0383161515610e9357600080fd5b33600090815260208190526040902054821115610eaf57600080fd5b33600090815260208190526040902054610ecf908363ffffffff610d4f16565b3360009081526020819052604080822092909255600160a060020a03851681522054610f01908363ffffffff610c3d16565b600160a060020a03841660008181526020818152604091829020939093558051858152905191923392600080516020610fe58339815191529281900390910190a350600192915050565b336000908152600260209081526040808320600160a060020a0386168452909152812054610f7f908363ffffffff610c3d16565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a3506001929150505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a7230582015e89e8774bdb6bda330246069cde5aaa9e64530c9dd50a5e081c9939c8b26630029
Deployed Bytecode Sourcemap
12993:623:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9130:35;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9130:35:0;;;;;;;;;;;;;;;;;;;;;;13073:47;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13073:47:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;13073:47:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11059:138;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;11059:138:0;-1:-1:-1;;;;;11059:138:0;;;;;;;3995:85;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3995:85:0;;;;;;;;;;;;;;;;;;;;10893:160;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;10893:160:0;-1:-1:-1;;;;;10893:160:0;;;;;;;;;;;;13171:35;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13171:35:0;;;;;;;;;;;;;;;;;;;;;;;10155:18;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10155:18:0;;;;2704:95;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2704:95:0;;;;;;10513:178;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;10513:178:0;-1:-1:-1;;;;;10513:178:0;;;;;;;12508:478;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;12508:478:0;;;;;2083:26;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2083:26:0;;;;11380:181;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;11380:181:0;-1:-1:-1;;;;;11380:181:0;;;;;;;4779:109;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;4779:109:0;-1:-1:-1;;;;;4779:109:0;;;;;9883:144;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9883:144:0;;;;11567:624;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;11567:624:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11567:624:0;;-1:-1:-1;;11567:624:0;;;-1:-1:-1;11567:624:0;;-1:-1:-1;;;;11567:624:0;2524:93;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2524:93:0;;;;1216:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1216:20:0;;;;;;;;-1:-1:-1;;;;;1216:20:0;;;;;;;;;;;;;;13127:37;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13127:37:0;;;;10757:130;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;10757:130:0;-1:-1:-1;;;;;10757:130:0;;;;;;;11203:171;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;11203:171:0;-1:-1:-1;;;;;11203:171:0;;;;;;;7059:128;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;7059:128:0;-1:-1:-1;;;;;7059:128:0;;;;;;;;;;1748:135;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;1748:135:0;-1:-1:-1;;;;;1748:135:0;;;;;9130:35;;;-1:-1:-1;;;9130:35:0;;;;;:::o;13073:47::-;;;;;;;;;;;;;;;;;;;:::o;11059:138::-;2259:6;;11140:4;;2259:6;;2258:7;2250:16;;;;;;11160:31;11174:8;11184:6;11160:13;:31::i;:::-;11153:38;11059:138;-1:-1:-1;;;11059:138:0:o;3995:85::-;4062:12;;3995:85;:::o;10893:160::-;2259:6;;10989:4;;2259:6;;2258:7;2250:16;;;;;;11009:38;11028:5;11035:3;11040:6;11009:18;:38::i;:::-;11002:45;10893:160;-1:-1:-1;;;;10893:160:0:o;13171:35::-;13204:2;13171:35;:::o;10155:18::-;;;;:::o;2704:95::-;1559:5;;-1:-1:-1;;;;;1559:5:0;1545:10;:19;1537:28;;;;;;2419:6;;;;2411:15;;;;;;;;2758:6;:14;;-1:-1:-1;;2758:14:0;;;2784:9;;;;2767:5;;2784:9;2704:95::o;10513:178::-;1559:5;;10591:4;;-1:-1:-1;;;;;1559:5:0;1545:10;:19;1537:28;;;;;;9209:15;;-1:-1:-1;;;9209:15:0;;;;9208:16;9200:25;;;;;;10641:3;;10612:12;;:25;;10629:7;10612:25;:16;:25;:::i;:::-;:32;;10604:41;;;;;;10661:24;10672:3;10677:7;10661:10;:24::i;12508:478::-;12579:10;12773:14;12570:20;;;;;;;;;;;12560:30;;;12552:39;;;;;;-1:-1:-1;12790:10:0;12826:8;:16;;;;;;;;;;;:28;;12847:6;12826:28;:20;:28;:::i;:::-;-1:-1:-1;;;;;12807:16:0;;:8;:16;;;;;;;;;;:47;12876:12;;:24;;12893:6;12876:24;:16;:24;:::i;:::-;12861:12;:39;12912:20;;;;;;;;-1:-1:-1;;;;;12912:20:0;;;;;;;;;;;;;12944:36;;;;;;;;12969:1;;-1:-1:-1;;;;;12944:36:0;;;-1:-1:-1;;;;;;;;;;;12944:36:0;;;;;;;;12508:478;;:::o;2083:26::-;;;;;;:::o;11380:181::-;2259:6;;11477:12;;2259:6;;2258:7;2250:16;;;;;;11505:50;11528:8;11538:16;11505:22;:50::i;4779:109::-;-1:-1:-1;;;;;4866:16:0;4835:15;4866:16;;;;;;;;;;;;4779:109::o;9883:144::-;1559:5;;9942:4;;-1:-1:-1;;;;;1559:5:0;1545:10;:19;1537:28;;;;;;9209:15;;-1:-1:-1;;;9209:15:0;;;;9208:16;9200:25;;;;;;9955:15;:22;;-1:-1:-1;;9955:22:0;-1:-1:-1;;;9955:22:0;;;9989:14;;;;9955:22;;9989:14;-1:-1:-1;10017:4:0;9883:144;:::o;11567:624::-;2259:6;;11658:4;;;;;;;;2259:6;;2258:7;2250:16;;;;;;11692:17;;;-1:-1:-1;11733:34:0;:6;11692:17;11733:34;:10;:34;:::i;:::-;11716:51;-1:-1:-1;11860:1:0;11844:17;;11836:26;;;;;;11886:1;11877:6;:10;:44;;;;-1:-1:-1;11900:10:0;11891:8;:20;;;;;;;;;;;:30;-1:-1:-1;11891:30:0;11877:44;11869:53;;;;;;;;11963:10;11954:8;:20;;;;;;;;;;;:32;;11979:6;11954:32;:24;:32;:::i;:::-;11940:10;11931:8;:20;;;;;;;;;;:55;;;;:8;-1:-1:-1;11993:175:0;12014:13;12010:1;:17;11993:175;;;12071:35;12099:6;12071:8;:23;12080:10;12091:1;12080:13;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;12071:23:0;;;;;;;;;;;-1:-1:-1;12071:23:0;;;:35;:27;:35;:::i;:::-;12045:8;:23;12054:10;12065:1;12054:13;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;12045:23:0;;;;;;;;;;;-1:-1:-1;12045:23:0;:61;12138:13;;:10;;12149:1;;12138:13;;;;;;;;;;;;;;-1:-1:-1;;;;;12117:43:0;12126:10;-1:-1:-1;;;;;12117:43:0;-1:-1:-1;;;;;;;;;;;12153:6:0;12117:43;;;;;;;;;;;;;;;;;;12029:3;;11993:175;;;-1:-1:-1;12181:4:0;;11567:624;-1:-1:-1;;;;;11567:624:0:o;2524:93::-;1559:5;;-1:-1:-1;;;;;1559:5:0;1545:10;:19;1537:28;;;;;;2259:6;;;;2258:7;2250:16;;;;;;2579:6;:13;;-1:-1:-1;;2579:13:0;2588:4;2579:13;;;2604:7;;;;2579:6;;2604:7;2524:93::o;1216:20::-;;;-1:-1:-1;;;;;1216:20:0;;:::o;13127:37::-;;;;;;;;;;;;;;;;;;;:::o;10757:130::-;2259:6;;10834:4;;2259:6;;2258:7;2250:16;;;;;;10854:27;10869:3;10874:6;10854:14;:27::i;11203:171::-;2259:6;;11295:12;;2259:6;;2258:7;2250:16;;;;;;11323:45;11346:8;11356:11;11323:22;:45::i;7059:128::-;-1:-1:-1;;;;;7156:15:0;;;7133:7;7156:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;7059:128::o;1748:135::-;1559:5;;-1:-1:-1;;;;;1559:5:0;1545:10;:19;1537:28;;;;;;-1:-1:-1;;;;;1821:22:0;;;1817:61;;1854:5;:16;;-1:-1:-1;;1854:16:0;-1:-1:-1;;;;;1854:16:0;;;;;1817:61;1748:135;:::o;6540:192::-;6628:10;6607:4;6620:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6620:29:0;;;;;;;;;;;:38;;;6670;;;;;;;6607:4;;6620:29;;6628:10;;6670:38;;;;;;;;-1:-1:-1;6722:4:0;6540:192;;;;:::o;5451:454::-;5533:4;-1:-1:-1;;;;;5554:17:0;;;;5546:26;;;;;;-1:-1:-1;;;;;5597:15:0;;:8;:15;;;;;;;;;;;5587:25;;;5579:34;;;;;;-1:-1:-1;;;;;5638:14:0;;;;;;:7;:14;;;;;;;;5653:10;5638:26;;;;;;;;5628:36;;;5620:45;;;;;;-1:-1:-1;;;;;5692:15:0;;:8;:15;;;;;;;;;;;:27;;5712:6;5692:27;:19;:27;:::i;:::-;-1:-1:-1;;;;;5674:15:0;;;:8;:15;;;;;;;;;;;:45;;;;5742:13;;;;;;;:25;;5760:6;5742:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;5726:13:0;;;:8;:13;;;;;;;;;;;:41;;;;5803:14;;;;;:7;:14;;;;;5818:10;5803:26;;;;;;;:38;;5834:6;5803:38;:30;:38;:::i;:::-;-1:-1:-1;;;;;5774:14:0;;;;;;;:7;:14;;;;;;;;5789:10;5774:26;;;;;;;;:67;;;;5853:28;;;;;;;;;;;5774:14;;-1:-1:-1;;;;;;;;;;;5853:28:0;;;;;;;;;;-1:-1:-1;5895:4:0;5451:454;;;;;:::o;1054:133::-;1112:7;1140:5;;;1159:6;;;;1152:14;;;;1180:1;1173:8;;1054:133;;;;;;:::o;9483:280::-;1559:5;;9561:4;;-1:-1:-1;;;;;1559:5:0;1545:10;:19;1537:28;;;;;;9209:15;;-1:-1:-1;;;9209:15:0;;;;9208:16;9200:25;;;;;;9589:12;;:25;;9606:7;9589:25;:16;:25;:::i;:::-;9574:12;:40;-1:-1:-1;;;;;9637:13:0;;:8;:13;;;;;;;;;;;:26;;9655:7;9637:26;:17;:26;:::i;:::-;-1:-1:-1;;;;;9621:13:0;;:8;:13;;;;;;;;;;;;:42;;;;9675:18;;;;;;;9621:13;;9675:18;;;;;;;;;9705:34;;;;;;;;-1:-1:-1;;;;;9705:34:0;;;9722:1;;-1:-1:-1;;;;;;;;;;;9705:34:0;;;;;;;;-1:-1:-1;9753:4:0;9483:280;;;;:::o;874:113::-;932:7;955:6;;;;948:14;;;;-1:-1:-1;976:5:0;;;874:113::o;8396:412::-;8516:10;8479:4;8508:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;8508:29:0;;;;;;;;;;8548:27;;;8544:168;;;8594:10;8618:1;8586:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;8586:29:0;;;;;;;;;:33;8544:168;;;8674:30;:8;8687:16;8674:30;:12;:30;:::i;:::-;8650:10;8642:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;8642:29:0;;;;;;;;;:62;8544:168;8732:10;8754:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;8723:61:0;;8754:29;;;;;;;;;;;8723:61;;;;;;;;;8732:10;8723:61;;;;;;;;;;;-1:-1:-1;8798:4:0;;8396:412;-1:-1:-1;;;8396:412:0:o;213:180::-;271:7;;291:6;;287:37;;;315:1;308:8;;;;287:37;-1:-1:-1;342:5:0;;;346:1;342;:5;361;;;;;;;;:10;354:18;;;4241:329;4304:4;-1:-1:-1;;;;;4325:17:0;;;;4317:26;;;;;;4377:10;4368:8;:20;;;;;;;;;;;4358:30;;;4350:39;;;;;;4430:10;4421:8;:20;;;;;;;;;;;:32;;4446:6;4421:32;:24;:32;:::i;:::-;4407:10;4398:8;:20;;;;;;;;;;;:55;;;;-1:-1:-1;;;;;4476:13:0;;;;;;:25;;4494:6;4476:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;4460:13:0;;:8;:13;;;;;;;;;;;;:41;;;;4513:33;;;;;;;4460:13;;4522:10;;-1:-1:-1;;;;;;;;;;;4513:33:0;;;;;;;;;-1:-1:-1;4560:4:0;4241:329;;;;:::o;7656:266::-;7787:10;7734:4;7779:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;7779:29:0;;;;;;;;;;:46;;7813:11;7779:46;:33;:46;:::i;:::-;7755:10;7747:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;7747:29:0;;;;;;;;;;;;:78;;;7837:61;;;;;;7747:29;;7837:61;;;;;;;;;;;-1:-1:-1;7912:4:0;7656:266;;;;:::o
Swarm Source
bzzr://15e89e8774bdb6bda330246069cde5aaa9e64530c9dd50a5e081c9939c8b2663
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 31 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.